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-
4- <groupId >com.levigo.jbig2</groupId >
5- <artifactId >levigo-jbig2-imageio</artifactId >
6- <name >jbig2-imageio</name >
7- <version >1.6.4-SNAPSHOT </version >
8-
9- <distributionManagement >
10- <snapshotRepository >
11- <id >sonatype-nexus-snapshots</id >
12- <name >Sonatype Nexus Snapshot Repository</name >
13- <url >https://oss.sonatype.org/content/repositories/snapshots/</url >
14- </snapshotRepository >
15- <repository >
16- <id >sonatype-nexus-staging</id >
17- <name >Sonatype Nexus Release Staging Repository</name >
18- <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
19- </repository >
20- </distributionManagement >
21-
22- <scm >
23- <connection >scm:git:ssh://github.com/levigo/jbig2-imageio.git</connection >
24- <developerConnection >scm:git:ssh://git@github.com/levigo/jbig2-imageio.git</developerConnection >
25- <url >https://github.com/levigo/jbig2-imageio</url >
26- <tag >HEAD </tag >
27- </scm >
28-
29- <dependencies >
30- <dependency >
31- <groupId >junit</groupId >
32- <artifactId >junit</artifactId >
33- <version >4.10</version >
34- <scope >test</scope >
35- </dependency >
36- </dependencies >
37-
38- <build >
39- <plugins >
40- <plugin >
41- <artifactId >maven-compiler-plugin</artifactId >
42- <configuration >
43- <source >1.5</source >
44- <target >1.5</target >
45- <debug >false</debug >
46- <optimize >true</optimize >
47- </configuration >
48- </plugin >
49-
50- <plugin >
51- <inherited >false</inherited >
52- <groupId >com.mycila.maven-license-plugin</groupId >
53- <artifactId >maven-license-plugin</artifactId >
54- <version >1.5.0</version >
55- <configuration >
56- <header >${basedir} /LICENSE-HEADER.txt</header >
57- <failIfMissing >true</failIfMissing >
58- <aggregate >true</aggregate >
59- <useDefaultExcludes >false</useDefaultExcludes >
60- <excludes >
61- <exclude >**/.classpath</exclude >
62- <exclude >**/.project</exclude >
63- <exclude >**/.settings/**</exclude >
64- <exclude >**/target/**</exclude >
65- <exclude >**/pom.xml</exclude >
66- <exclude >**/.idea/**</exclude >
67- <exclude >**/atlassian-ide-plugin.xml</exclude >
68- </excludes >
69- <includes >
70- <include >**/*.xml</include >
71- <include >**/src/**/*.java</include >
72- <include >**/src/**/*.properties</include >
73- </includes >
74- </configuration >
75- <executions >
76- <execution >
77- <id >check-headers</id >
78- <phase >verify</phase >
79- <goals >
80- <goal >check</goal >
81- </goals >
82- </execution >
83- </executions >
84- </plugin >
85-
86- <plugin >
87- <artifactId >maven-release-plugin</artifactId >
88- <version >2.4.2</version >
89- <configuration >
90- <autoVersionSubmodules >true</autoVersionSubmodules >
91- <!-- Keep changes in the local repo, push will be done afterwards -->
92- <pushChanges >false</pushChanges >
93- <localCheckout >true</localCheckout >
94- <!-- Use a better name for the tag -->
95- <tagNameFormat >${artifactId} -${project.version} </tagNameFormat >
96- </configuration >
97- <dependencies >
98- <dependency >
99- <groupId >org.apache.maven.scm</groupId >
100- <artifactId >maven-scm-provider-gitexe</artifactId >
101- <version >1.9</version >
102- </dependency >
103- </dependencies >
104- </plugin >
105- </plugins >
106- </build >
107-
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+
4+ <groupId >com.levigo.jbig2</groupId >
5+ <artifactId >levigo-jbig2-imageio</artifactId >
6+ <name >jbig2-imageio</name >
7+ <version >1.6.4</version >
8+
9+ <distributionManagement >
10+ <snapshotRepository >
11+ <id >sonatype-nexus-snapshots</id >
12+ <name >Sonatype Nexus Snapshot Repository</name >
13+ <url >https://oss.sonatype.org/content/repositories/snapshots/</url >
14+ </snapshotRepository >
15+ <repository >
16+ <id >sonatype-nexus-staging</id >
17+ <name >Sonatype Nexus Release Staging Repository</name >
18+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
19+ </repository >
20+ </distributionManagement >
21+
22+ <scm >
23+ <connection >scm:git:ssh://github.com/levigo/jbig2-imageio.git</connection >
24+ <developerConnection >scm:git:ssh://git@github.com/levigo/jbig2-imageio.git</developerConnection >
25+ <url >https://github.com/levigo/jbig2-imageio</url >
26+ <tag >levigo-jbig2-imageio-1.6.4 </tag >
27+ </scm >
28+
29+ <dependencies >
30+ <dependency >
31+ <groupId >junit</groupId >
32+ <artifactId >junit</artifactId >
33+ <version >4.10</version >
34+ <scope >test</scope >
35+ </dependency >
36+ </dependencies >
37+
38+ <build >
39+ <plugins >
40+ <plugin >
41+ <artifactId >maven-compiler-plugin</artifactId >
42+ <configuration >
43+ <source >1.5</source >
44+ <target >1.5</target >
45+ <debug >false</debug >
46+ <optimize >true</optimize >
47+ </configuration >
48+ </plugin >
49+
50+ <plugin >
51+ <inherited >false</inherited >
52+ <groupId >com.mycila.maven-license-plugin</groupId >
53+ <artifactId >maven-license-plugin</artifactId >
54+ <version >1.5.0</version >
55+ <configuration >
56+ <header >${basedir} /LICENSE-HEADER.txt</header >
57+ <failIfMissing >true</failIfMissing >
58+ <aggregate >true</aggregate >
59+ <useDefaultExcludes >false</useDefaultExcludes >
60+ <excludes >
61+ <exclude >**/.classpath</exclude >
62+ <exclude >**/.project</exclude >
63+ <exclude >**/.settings/**</exclude >
64+ <exclude >**/target/**</exclude >
65+ <exclude >**/pom.xml</exclude >
66+ <exclude >**/.idea/**</exclude >
67+ <exclude >**/atlassian-ide-plugin.xml</exclude >
68+ </excludes >
69+ <includes >
70+ <include >**/*.xml</include >
71+ <include >**/src/**/*.java</include >
72+ <include >**/src/**/*.properties</include >
73+ </includes >
74+ </configuration >
75+ <executions >
76+ <execution >
77+ <id >check-headers</id >
78+ <phase >verify</phase >
79+ <goals >
80+ <goal >check</goal >
81+ </goals >
82+ </execution >
83+ </executions >
84+ </plugin >
85+
86+ <plugin >
87+ <artifactId >maven-release-plugin</artifactId >
88+ <version >2.4.2</version >
89+ <configuration >
90+ <autoVersionSubmodules >true</autoVersionSubmodules >
91+ <!-- Keep changes in the local repo, push will be done afterwards -->
92+ <pushChanges >false</pushChanges >
93+ <localCheckout >true</localCheckout >
94+ <!-- Use a better name for the tag -->
95+ <tagNameFormat >${artifactId} -${project.version} </tagNameFormat >
96+ </configuration >
97+ <dependencies >
98+ <dependency >
99+ <groupId >org.apache.maven.scm</groupId >
100+ <artifactId >maven-scm-provider-gitexe</artifactId >
101+ <version >1.9</version >
102+ </dependency >
103+ </dependencies >
104+ </plugin >
105+ </plugins >
106+ </build >
107+
108108</project >
0 commit comments