-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from asterics/ki-i/easyreading-plugins
added KI-I plugins for EasyReading project: Plugin Help to be updated
- Loading branch information
Showing
46 changed files
with
5,566 additions
and
0 deletions.
There are no files selected for viewing
282 changes: 282 additions & 0 deletions
282
ARE/components/processor.blinkchangedetector/LICENSE/LICENSE_MITOrGPLv3WithException.txt
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
ARE/components/processor.blinkchangedetector/LICENSE/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## AsTeRICS licensing | ||
|
||
**This folder is used to reflect the used licenses for this component.** | ||
|
||
**A contributor must add the respective license file** for the component (either **LICENSE_MITOrGPLv3WithException.txt** or one of the two dual license options) to the component/LICENSE folder. Furthermore, **for each thirdparty library** used, the license file must be added with the following naming convention (Please use CamelCase notation for the library and license names): | ||
|
||
THIRDPARTY_NameOfLibrary_LicenseNameInclVersionInfo.txt |
1 change: 1 addition & 0 deletions
1
...ocessor.blinkchangedetector/LICENSE/THIRDPARTY_LibraryName_LicenseNameInclVersionInfo.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Put in the license text of the respective thirdparty library. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<project name="asterics.${component.id}" default="jar" basedir="."> | ||
|
||
<property name="component.id" value="processor.BlinkChangeDetector"/> | ||
<!-- set global properties for this build --> | ||
<property name="build" location="../out/production/${component.id}"/> | ||
<property name="src.java" location="src/main/java"/> | ||
<property name="dist" location=".."/> | ||
<property name="runtime" location="../../../bin/ARE"/> | ||
<property name="osgi" location="../../osgi"/> | ||
<property name="middleware" location="../../middleware"/> | ||
<property name="services" location="../../services"/> | ||
<property name="classpath" location=".."/> | ||
<path id="asterics.classpath"> | ||
<pathelement location="bin"/> | ||
<pathelement location="${osgi}/org.eclipse.osgi_3.6.0.v20100517.jar"/> | ||
<pathelement location="${middleware}/asterics.ARE.jar"/> | ||
<pathelement location="${services}/asterics.mw.systemstatechange.jar"/> | ||
<pathelement location="${services}/asterics.mw.cimcommunication.jar"/> | ||
</path> | ||
|
||
<property name="resources" location="src/main/resources"/> | ||
|
||
<target name="init"> | ||
<!-- Create the time stamp --> | ||
<tstamp/> | ||
<!-- Create the build directory structure used by compile --> | ||
<mkdir dir="${build}"/> | ||
</target> | ||
|
||
<target name="compile" depends="init" description="compile the source "> | ||
<javac source="${javac.source}" target="${javac.target}" includeantruntime="false" srcdir="${src.java}" destdir="${build}" verbose="true" debug="${debug}" | ||
classpath="${classpath}"> <classpath refid="asterics.classpath"/> | ||
</javac> | ||
</target> | ||
|
||
<target name="jar" depends="compile" description="generate the OSGi bundle" > | ||
<jar jarfile="${dist}/asterics.${component.id}.jar" basedir="${build}" | ||
manifest="${resources}/META-INF/MANIFEST.MF"> | ||
<fileset dir="${resources}"/> | ||
</jar> | ||
<copy file="${dist}/asterics.${component.id}.jar" | ||
tofile="${runtime}/asterics.${component.id}.jar"/> | ||
</target> | ||
|
||
<import file="../../imported.xml"/> | ||
<include file="../../included.xml"/> | ||
</project> |
Oops, something went wrong.