1- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3- <modelVersion >4.0.0</modelVersion >
4- <groupId >com.googlecode.combinatoricslib</groupId >
5- <artifactId >combinatoricslib</artifactId >
6- <version >2.2-SNAPSHOT</version >
7- <name >CombinatoricsLib</name >
8- <description >Very simple java library to generate permutations, combinations and other combinatorial sequences</description >
9- <licenses >
10- <license >
11- <name >LGPL v3.0</name >
12- <distribution >repo</distribution >
13- <url >http://www.gnu.org/licenses/lgpl.html</url >
14- </license >
15- </licenses >
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/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <groupId >com.googlecode.combinatoricslib</groupId >
6+ <artifactId >combinatoricslib</artifactId >
7+ <version >2.2-SNAPSHOT</version >
8+ <name >CombinatoricsLib</name >
9+ <description >Very simple java library to generate permutations, combinations and other
10+ combinatorial sequences.
11+ </description >
12+ <licenses >
13+ <license >
14+ <name >LGPL v3.0</name >
15+ <distribution >repo</distribution >
16+ <url >http://www.gnu.org/licenses/lgpl.html</url >
17+ </license >
18+ </licenses >
1619
17- <ciManagement >
18- <system >Travis CI</system >
19- <url >https://travis-ci.org/dpaukov/combinatoricslib</url >
20- </ciManagement >
20+ <scm >
21+ <connection >scm:git:git://github.com/dpaukov/combinatoricslib.git</connection >
22+ <developerConnection >scm:git:git://github.com/dpaukov/combinatoricslib.git
23+ </developerConnection >
24+ <url >https://github.com/dpaukov/combinatoricslib</url >
25+ </scm >
2126
22- < issueManagement >
23- <system >GitHub Issues </system >
24- <url >https://github.com /dpaukov/combinatoricslib</url >
25- </ issueManagement >
27+ < ciManagement >
28+ <system >Travis CI </system >
29+ <url >https://travis-ci.org /dpaukov/combinatoricslib</url >
30+ </ ciManagement >
2631
27- <developers >
28- <developer >
29- <id >d.paukov</id >
30- <name >Dmytro Paukov</name >
31- 32- </developer >
33- </developers >
32+ <issueManagement >
33+ <system >GitHub Issues</system >
34+ <url >https://github.com/dpaukov/combinatoricslib</url >
35+ </issueManagement >
3436
35- <properties >
36- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
37- </properties >
37+ <developers >
38+ <developer >
39+ <id >d.paukov</id >
40+ <name >Dmytro Paukov</name >
41+ 42+ </developer >
43+ </developers >
3844
39- <build >
40- <plugins >
41- <plugin >
42- <artifactId >maven-compiler-plugin</artifactId >
43- <version >3.7.0</version >
44- <configuration >
45- <source >1.7</source >
46- <target >1.7</target >
47- </configuration >
48- </plugin >
49- <plugin >
50- <groupId >org.apache.maven.plugins</groupId >
51- <artifactId >maven-source-plugin</artifactId >
52- <version >3.0.1</version >
53- <executions >
54- <execution >
55- <id >attach-sources</id >
56- <goals >
57- <goal >jar</goal >
58- </goals >
59- </execution >
60- </executions >
61- </plugin >
62- <plugin >
63- <groupId >org.apache.maven.plugins</groupId >
64- <artifactId >maven-javadoc-plugin</artifactId >
65- <version >3.0.0</version >
66- <executions >
67- <execution >
68- <id >attach-javadocs</id >
69- <goals >
70- <goal >jar</goal >
71- </goals >
72- </execution >
73- </executions >
74- <configuration >
75- <show >public</show >
76- </configuration >
77- </plugin >
78- <plugin >
79- <groupId >org.codehaus.mojo</groupId >
80- <artifactId >cobertura-maven-plugin</artifactId >
81- <version >2.7</version >
82- <configuration >
83- <format >xml</format >
84- <maxmem >256m</maxmem >
85- <aggregate >true</aggregate >
86- <instrumentation >
87- <ignoreTrivial >true</ignoreTrivial >
88- <ignores >
89- <ignore >org.paukov.examples.*</ignore >
90- </ignores >
91- <excludes >
92- <exclude >org/paukov/examples/*.class</exclude >
93- </excludes >
94- </instrumentation >
95- <check />
96- </configuration >
97- </plugin >
98- <plugin >
99- <groupId >org.eluder.coveralls</groupId >
100- <artifactId >coveralls-maven-plugin</artifactId >
101- <version >4.3.0</version >
102- <configuration >
103- <repoToken >X1yKwWROG5fUTkWa7YlnnFWJJQvb8LaFQ</repoToken >
104- </configuration >
105- </plugin >
45+ <properties >
46+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
47+ </properties >
10648
107- </plugins >
108- </build >
49+ <distributionManagement >
50+ <snapshotRepository >
51+ <id >ossrh</id >
52+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
53+ </snapshotRepository >
54+ <repository >
55+ <id >ossrh</id >
56+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
57+ </repository >
58+ </distributionManagement >
10959
110- <reporting >
111- <plugins >
112- <!-- Normally, we take off the dependency report, saves time. -->
113- <plugin >
114- <groupId >org.apache.maven.plugins</groupId >
115- <artifactId >maven-project-info-reports-plugin</artifactId >
116- <version >2.7</version >
117- <configuration >
118- <dependencyLocationsEnabled >false</dependencyLocationsEnabled >
119- </configuration >
120- </plugin >
121- </plugins >
122- </reporting >
60+ <build >
61+ <plugins >
62+ <plugin >
63+ <artifactId >maven-compiler-plugin</artifactId >
64+ <version >3.7.0</version >
65+ <configuration >
66+ <source >1.7</source >
67+ <target >1.7</target >
68+ </configuration >
69+ </plugin >
70+ <plugin >
71+ <groupId >org.apache.maven.plugins</groupId >
72+ <artifactId >maven-source-plugin</artifactId >
73+ <version >3.0.1</version >
74+ <executions >
75+ <execution >
76+ <id >attach-sources</id >
77+ <goals >
78+ <goal >jar</goal >
79+ </goals >
80+ </execution >
81+ </executions >
82+ </plugin >
83+ <plugin >
84+ <groupId >org.apache.maven.plugins</groupId >
85+ <artifactId >maven-javadoc-plugin</artifactId >
86+ <version >3.0.0</version >
87+ <executions >
88+ <execution >
89+ <id >attach-javadocs</id >
90+ <goals >
91+ <goal >jar</goal >
92+ </goals >
93+ </execution >
94+ </executions >
95+ <configuration >
96+ <show >public</show >
97+ </configuration >
98+ </plugin >
99+ <plugin >
100+ <groupId >org.codehaus.mojo</groupId >
101+ <artifactId >cobertura-maven-plugin</artifactId >
102+ <version >2.7</version >
103+ <configuration >
104+ <format >xml</format >
105+ <maxmem >256m</maxmem >
106+ <aggregate >true</aggregate >
107+ <instrumentation >
108+ <ignoreTrivial >true</ignoreTrivial >
109+ <ignores >
110+ <ignore >org.paukov.examples.*</ignore >
111+ </ignores >
112+ <excludes >
113+ <exclude >org/paukov/examples/*.class</exclude >
114+ </excludes >
115+ </instrumentation >
116+ <check />
117+ </configuration >
118+ </plugin >
119+ <plugin >
120+ <groupId >org.eluder.coveralls</groupId >
121+ <artifactId >coveralls-maven-plugin</artifactId >
122+ <version >4.3.0</version >
123+ <configuration >
124+ <repoToken >X1yKwWROG5fUTkWa7YlnnFWJJQvb8LaFQ</repoToken >
125+ </configuration >
126+ </plugin >
123127
124- <url >http://code.google.com/p/combinatoricslib/</ url >
125- < inceptionYear >2009</ inceptionYear >
128+ </ plugins >
129+ </ build >
126130
127- <dependencies >
128- <dependency >
129- <groupId >junit</groupId >
130- <artifactId >junit</artifactId >
131- <version >4.12</version >
132- <scope >test</scope >
133- </dependency >
134- </dependencies >
131+ <reporting >
132+ <plugins >
133+ <!-- Normally, we take off the dependency report, saves time. -->
134+ <plugin >
135+ <groupId >org.apache.maven.plugins</groupId >
136+ <artifactId >maven-project-info-reports-plugin</artifactId >
137+ <version >2.7</version >
138+ <configuration >
139+ <dependencyLocationsEnabled >false</dependencyLocationsEnabled >
140+ </configuration >
141+ </plugin >
142+ </plugins >
143+ </reporting >
135144
136- <profiles >
137- <profile >
138- <id >release</id >
139- <build >
140- <plugins >
141- <plugin >
142- <groupId >org.apache.maven.plugins</groupId >
143- <artifactId >maven-gpg-plugin</artifactId >
144- <version >1.6</version >
145- <executions >
146- <execution >
147- <id >sign-artifacts</id >
148- <phase >verify</phase >
149- <goals >
150- <goal >sign</goal >
151- </goals >
152- </execution >
153- </executions >
154- </plugin >
155- </plugins >
156- </build >
157- </profile >
158- </profiles >
145+ <url >http://code.google.com/p/combinatoricslib/</url >
146+ <inceptionYear >2009</inceptionYear >
147+
148+ <dependencies >
149+ <dependency >
150+ <groupId >junit</groupId >
151+ <artifactId >junit</artifactId >
152+ <version >4.12</version >
153+ <scope >test</scope >
154+ </dependency >
155+ </dependencies >
156+
157+ <profiles >
158+ <profile >
159+ <id >release</id >
160+ <build >
161+ <plugins >
162+ <plugin >
163+ <groupId >org.apache.maven.plugins</groupId >
164+ <artifactId >maven-gpg-plugin</artifactId >
165+ <version >1.6</version >
166+ <executions >
167+ <execution >
168+ <id >sign-artifacts</id >
169+ <phase >verify</phase >
170+ <goals >
171+ <goal >sign</goal >
172+ </goals >
173+ </execution >
174+ </executions >
175+ </plugin >
176+ </plugins >
177+ </build >
178+ </profile >
179+ </profiles >
159180
160181</project >
0 commit comments