Archived
0

BuildFile and FS modules implementation [commit 2]

This commit is contained in:
terminator48
2016-04-08 23:32:54 +06:00
parent cccf8c2bc0
commit 94105d790e
22 changed files with 784 additions and 10 deletions

View File

@@ -19,4 +19,25 @@
<version>${global.version}</version>
</dependency>
</dependencies>
<build>
<finalName>${groupId}.${artifactId}-${version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.5</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Name>Arcadex System: ${name} ${version}</Bundle-Name>
<Bundle-SymbolicName>${groupId}.${artifactId}</Bundle-SymbolicName>
<Bundle-Activator>eu.arcadex.system.build_sequence.Activator</Bundle-Activator>
<Export-Package>eu.arcadex.system.build_sequence.api</Export-Package>
<Import-Package>*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>