-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom-jpa2.xml
93 lines (92 loc) · 4.26 KB
/
pom-jpa2.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.1.Final-${meta-utils-version}</version>
<build>
<defaultGoal>package</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerVersion>1.6</compilerVersion>
<proc>none</proc>
<optimize>true</optimize>
<debug>false</debug>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>metajar</id>
<phase>package</phase>
<goals><goal>jar</goal></goals>
<configuration>
<includes>
<include>**/*_.class</include>
</includes>
<outputDirectory>${project.build.directory}/bar</outputDirectory>
<finalName>${project.artifactId}-meta-${project.version}</finalName>
<archive><addMavenDescriptor>false</addMavenDescriptor></archive>
</configuration>
</execution>
<execution>
<id>metasrcjar</id>
<phase>package</phase>
<goals><goal>jar</goal></goals>
<configuration>
<classifier>sources</classifier>
<classesDirectory>${project.build.directory}/foo</classesDirectory>
<includes>
<include>**/*.java</include>
</includes>
<outputDirectory>${project.build.directory}/bar</outputDirectory>
<finalName>${project.artifactId}-meta-${project.version}</finalName>
<archive><addMavenDescriptor>false</addMavenDescriptor></archive>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>2.2.4</version>
<executions>
<execution>
<id>process</id>
<phase>generate-sources</phase>
<goals>
<goal>process</goal>
</goals>
<configuration>
<compilerArguments>-source 1.6 -target 1.6</compilerArguments>
<outputDirectory>${project.build.directory}/foo</outputDirectory>
<optionMap>
<CommonMetadataProcessor.onlyPublicMembers>true</CommonMetadataProcessor.onlyPublicMembers>
</optionMap>
<processors>
<processor>fi.solita.utils.meta.CommonMetadataProcessor</processor>
</processors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>fi.solita.utils</groupId>
<artifactId>functional-utils</artifactId>
<version>0.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>fi.solita.utils</groupId>
<artifactId>meta-utils</artifactId>
<version>${meta-utils-version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>