Skip to content

Commit 26089ac

Browse files
committed
Added the dist module.
1 parent 17fa785 commit 26089ac

File tree

4 files changed

+80
-4
lines changed

4 files changed

+80
-4
lines changed

dist/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/files/

dist/pom.xml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>org.jvnet.jaxb2_commons</groupId>
6+
<artifactId>jaxb2-basics-dist</artifactId>
7+
<packaging>pom</packaging>
8+
<name>JAXB2 Basics - Distribution</name>
9+
<parent>
10+
<groupId>org.jvnet.jaxb2_commons</groupId>
11+
<artifactId>jaxb2-basics-project</artifactId>
12+
<version>0.9.1-SNAPSHOT</version>
13+
</parent>
14+
<dependencies>
15+
<dependency>
16+
<groupId>${project.groupId}</groupId>
17+
<artifactId>jaxb2-basics-sample-po</artifactId>
18+
<type>zip</type>
19+
<classifier>maven-src</classifier>
20+
<version>${project.version}</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>${project.groupId}</groupId>
24+
<artifactId>jaxb2-basics-sample-po</artifactId>
25+
<type>zip</type>
26+
<classifier>ant-src</classifier>
27+
<version>${project.version}</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>${project.groupId}</groupId>
31+
<artifactId>jaxb2-basics-sample-basic</artifactId>
32+
<type>zip</type>
33+
<classifier>maven-src</classifier>
34+
<version>${project.version}</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>${project.groupId}</groupId>
38+
<artifactId>jaxb2-basics-sample-basic</artifactId>
39+
<type>zip</type>
40+
<classifier>ant-src</classifier>
41+
<version>${project.version}</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>${project.groupId}</groupId>
45+
<artifactId>jaxb2-basics-plugins</artifactId>
46+
<version>${project.version}</version>
47+
</dependency>
48+
</dependencies>
49+
<build>
50+
<plugins>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-deploy-plugin</artifactId>
54+
<configuration>
55+
<skip>true</skip>
56+
</configuration>
57+
</plugin>
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-dependency-plugin</artifactId>
61+
<executions>
62+
<execution>
63+
<phase>package</phase>
64+
<goals>
65+
<goal>copy-dependencies</goal>
66+
</goals>
67+
<configuration>
68+
<outputDirectory>files</outputDirectory>
69+
<overWriteReleases>true</overWriteReleases>
70+
<overWriteSnapshots>true</overWriteSnapshots>
71+
<includeScope>runtime</includeScope>
72+
</configuration>
73+
</execution>
74+
</executions>
75+
</plugin>
76+
</plugins>
77+
</build>
78+
</project>

plugins/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@
2323
<groupId>org.jvnet.jaxb2_commons</groupId>
2424
<artifactId>jaxb2-basics-tools</artifactId>
2525
</dependency>
26-
<dependency>
27-
<groupId>org.jvnet.jaxb2_commons</groupId>
28-
<artifactId>jaxb2-basics-runtime</artifactId>
29-
</dependency>
3026
</dependencies>
3127
<build>
3228
<plugins>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
<module>testing</module>
6969
<module>basic</module>
7070
<module>plugins</module>
71+
<module>dist</module>
7172
</modules>
7273
<profiles>
7374
<profile>

0 commit comments

Comments
 (0)