-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
111 lines (98 loc) · 2.84 KB
/
pom.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<project xmlns="http://maven.apache.org/POM/4.0.0">
<!-- To generate IntelliJ IDEA files:
mvn idea:idea -DjdkName=1.5.0_06 -->
<name>ODD Beans</name>
<modelVersion>4.0.0</modelVersion>
<artifactId>odd-beans</artifactId>
<groupId>net.opendd</groupId>
<version>1.0.0</version>
<description>
Open Data Definition (ODD) Java beans and tests
</description>
<organization>
<name>codeBrane</name>
<url>http://codebrane.com/blog</url>
</organization>
<inceptionYear>2009</inceptionYear>
<developers>
<developer>
<id>codebrane</id>
<name>Alistair Young</name>
<email>[email protected]</email>
<roles>
<role>Project Manager</role>
<role>Architect</role>
<role>Developer</role>
</roles>
<organization>codeBrane</organization>
<timezone>0</timezone>
</developer>
</developers>
<licenses>
<license>
<name>MOZILLA PUBLIC LICENSE Version 1.1</name>
<url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>jsr173_1.0_api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xbean</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<!-- mvn clean xmlbeans:xmlbeans install -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>xmlbeans</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
<configuration>
<schemaDirectory>${basedir}/xsd</schemaDirectory>
<sourceGenerationDirectory>src/main/java</sourceGenerationDirectory>
<download>true</download>
<noUpa>true</noUpa>
<xmlConfigs>
<xmlConfig implementation="java.io.File">${basedir}/xsd/odd.xsdconfig</xmlConfig>
</xmlConfigs>
</configuration>
</plugin>
</plugins>
</build>
</project>