1 | <?xml version="1.0" encoding="UTF-8"?>
|
---|
2 | <!--
|
---|
3 |
|
---|
4 | Copyright (C) Christian Schulte, 2012-10
|
---|
5 | All rights reserved.
|
---|
6 |
|
---|
7 | Redistribution and use in source and binary forms, with or without
|
---|
8 | modification, are permitted provided that the following conditions
|
---|
9 | are met:
|
---|
10 |
|
---|
11 | o Redistributions of source code must retain the above copyright
|
---|
12 | notice, this list of conditions and the following disclaimer.
|
---|
13 |
|
---|
14 | o Redistributions in binary form must reproduce the above copyright
|
---|
15 | notice, this list of conditions and the following disclaimer in
|
---|
16 | the documentation and/or other materials provided with the
|
---|
17 | distribution.
|
---|
18 |
|
---|
19 | THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
---|
20 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
---|
21 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
---|
22 | THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
23 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
24 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
25 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
26 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
27 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
28 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
29 |
|
---|
30 | $JOMC: pom.xml 4768 2013-04-09 03:54:57Z schulte $
|
---|
31 |
|
---|
32 | -->
|
---|
33 | <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">
|
---|
34 | <parent>
|
---|
35 | <artifactId>jomc-build</artifactId>
|
---|
36 | <groupId>org.jomc.build</groupId>
|
---|
37 | <version>1.9-SNAPSHOT</version>
|
---|
38 | </parent>
|
---|
39 | <modelVersion>4.0.0</modelVersion>
|
---|
40 | <groupId>org.jomc.build</groupId>
|
---|
41 | <artifactId>jomc-build-signatures</artifactId>
|
---|
42 | <packaging>pom</packaging>
|
---|
43 | <name>JOMC Build ⁑ Animal Sniffer Signatures</name>
|
---|
44 | <description>Animal Sniffer signatures parent project object model.</description>
|
---|
45 | <build>
|
---|
46 | <pluginManagement>
|
---|
47 | <plugins>
|
---|
48 | <plugin>
|
---|
49 | <groupId>org.apache.maven.plugins</groupId>
|
---|
50 | <artifactId>maven-remote-resources-plugin</artifactId>
|
---|
51 | <executions>
|
---|
52 | <execution>
|
---|
53 | <id>default-process</id>
|
---|
54 | <goals>
|
---|
55 | <goal>process</goal>
|
---|
56 | </goals>
|
---|
57 | <configuration>
|
---|
58 | <resourceBundles>
|
---|
59 | <resourceBundle>org.jomc.build:jomc-build-resources:${project.version}</resourceBundle>
|
---|
60 | </resourceBundles>
|
---|
61 | <properties>
|
---|
62 | <buildDate>${build.date}</buildDate>
|
---|
63 | <with-developer-copyright>true</with-developer-copyright>
|
---|
64 | </properties>
|
---|
65 | <outputDirectory>${remoteResourcesOutputDirectory}</outputDirectory>
|
---|
66 | </configuration>
|
---|
67 | </execution>
|
---|
68 | </executions>
|
---|
69 | </plugin>
|
---|
70 | </plugins>
|
---|
71 | </pluginManagement>
|
---|
72 | </build>
|
---|
73 | <modules>
|
---|
74 | <module>jdk15-jaxb20-signature</module>
|
---|
75 | <module>jdk15-jaxb21-signature</module>
|
---|
76 | <module>jdk15-jaxb22-signature</module>
|
---|
77 | <module>jdk15-jpa10-signature</module>
|
---|
78 | <module>jdk15-jta11-signature</module>
|
---|
79 | </modules>
|
---|
80 | </project>
|
---|