]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/pom.xml
Introduction of annotation to handle MVC flows // Class cleaning
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.12.2-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.specs</artifactId>
11 <name>SLC Specifications</name>
12 <build>
13 <resources>
14 <resource>
15 <directory>src/main/resources</directory>
16 </resource>
17 <resource>
18 <directory>.</directory>
19 <includes>
20 <include>META-INF/**</include>
21 </includes>
22 </resource>
23 </resources>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-compiler-plugin</artifactId>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-source-plugin</artifactId>
32 </plugin>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-jar-plugin</artifactId>
36 <configuration>
37 <archive>
38 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
39 </archive>
40 </configuration>
41 </plugin>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
45 <version>${version.maven-bundle-plugin}</version>
46 <configuration>
47 <manifestLocation>META-INF</manifestLocation>
48 <instructions>
49 <Export-Package>
50 org.argeo.slc.*
51 </Export-Package>
52 <Import-Package>*,
53 org.hibernate.proxy;resolution:="optional",
54 javassist.util.proxy;resolution:="optional"
55 </Import-Package>
56 </instructions>
57 </configuration>
58 </plugin>
59
60 </plugins>
61 </build>
62 <dependencies>
63 </dependencies>
64 </project>