Skip to content

Commit 0197029

Browse files
preparing poms for tag v1.0.2
1 parent 88f4485 commit 0197029

File tree

7 files changed

+40
-33
lines changed

7 files changed

+40
-33
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.project
22
/target
33
.settings/
4-
jsondoc-parent/.settings/
4+
*.versionsBackup

jsondoc-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>jsondoc-master</artifactId>
77
<groupId>org.jsondoc</groupId>
8-
<version>1.0.2-SNAPSHOT</version>
8+
<version>1.0.2</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

jsondoc-sample-external/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>jsondoc-master</artifactId>
77
<groupId>org.jsondoc</groupId>
8-
<version>1.0.2-SNAPSHOT</version>
8+
<version>1.0.2</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

jsondoc-sample-springmvc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>jsondoc-master</artifactId>
77
<groupId>org.jsondoc</groupId>
8-
<version>1.0.2-SNAPSHOT</version>
8+
<version>1.0.2</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

jsondoc-springmvc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>jsondoc-master</artifactId>
88
<groupId>org.jsondoc</groupId>
9-
<version>1.0.2-SNAPSHOT</version>
9+
<version>1.0.2</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

jsondoc-ui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>jsondoc-master</artifactId>
88
<groupId>org.jsondoc</groupId>
9-
<version>1.0.2-SNAPSHOT</version>
9+
<version>1.0.2</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

pom.xml

Lines changed: 34 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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+
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
34
<modelVersion>4.0.0</modelVersion>
45

56
<groupId>org.jsondoc</groupId>
67
<artifactId>jsondoc-master</artifactId>
7-
<version>1.0.2-SNAPSHOT</version>
8+
<version>1.0.2</version>
89
<packaging>pom</packaging>
910
<name>jsondoc-master</name>
10-
11+
1112
<developers>
1213
<developer>
1314
<name>Fabio Maffioletti</name>
1415
</developer>
1516
</developers>
16-
17+
1718
<scm>
1819
<connection>scm:git:git@github.com:fabiomaffioletti/jsondoc.git</connection>
1920
<url>scm:git:git@github.com:fabiomaffioletti/jsondoc.git</url>
@@ -25,20 +26,20 @@
2526
<module>jsondoc-springmvc</module>
2627
<module>jsondoc-sample-springmvc</module>
2728
<module>jsondoc-sample-external</module>
28-
<module>jsondoc-ui</module>
29-
</modules>
30-
31-
<properties>
29+
<module>jsondoc-ui</module>
30+
</modules>
31+
32+
<properties>
3233
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3334
</properties>
34-
35+
3536
<repositories>
3637
<repository>
3738
<id>springource-artifactory</id>
3839
<url>http://repo.springsource.org/libs-milestone</url>
3940
</repository>
4041
</repositories>
41-
42+
4243
<dependencyManagement>
4344
<dependencies>
4445
<!-- Jsondoc -->
@@ -47,63 +48,63 @@
4748
<artifactId>jsondoc-core</artifactId>
4849
<version>${project.version}</version>
4950
</dependency>
50-
51+
5152
<dependency>
5253
<groupId>org.jsondoc</groupId>
5354
<artifactId>jsondoc-springmvc</artifactId>
5455
<version>${project.version}</version>
5556
</dependency>
56-
57+
5758
<!-- Spring -->
5859
<dependency>
5960
<groupId>org.springframework</groupId>
6061
<artifactId>spring-webmvc</artifactId>
6162
<version>3.1.2.RELEASE</version>
6263
</dependency>
63-
64+
6465
<!-- Reflection -->
6566
<dependency>
6667
<groupId>org.reflections</groupId>
6768
<artifactId>reflections</artifactId>
6869
<version>0.9.9-RC1</version>
6970
</dependency>
70-
71+
7172
<!-- Json -->
7273
<dependency>
7374
<groupId>org.codehaus.jackson</groupId>
7475
<artifactId>jackson-mapper-asl</artifactId>
7576
<version>1.9.8</version>
7677
</dependency>
77-
78+
7879
<!-- Logging -->
7980
<dependency>
8081
<groupId>log4j</groupId>
8182
<artifactId>log4j</artifactId>
8283
<version>1.2.17</version>
8384
</dependency>
84-
85+
8586
<!-- Test -->
8687
<dependency>
8788
<groupId>org.springframework</groupId>
8889
<artifactId>spring-test</artifactId>
8990
<version>3.1.2.RELEASE</version>
9091
<scope>test</scope>
9192
</dependency>
92-
93+
9394
<dependency>
9495
<groupId>org.springframework</groupId>
9596
<artifactId>spring-test-mvc</artifactId>
9697
<version>1.0.0.M1</version>
9798
<scope>test</scope>
9899
</dependency>
99-
100+
100101
<!-- Other -->
101102
<dependency>
102103
<groupId>javax.servlet</groupId>
103104
<artifactId>servlet-api</artifactId>
104105
<version>2.4</version>
105106
</dependency>
106-
107+
107108
</dependencies>
108109
</dependencyManagement>
109110

@@ -115,28 +116,28 @@
115116
<scope>test</scope>
116117
</dependency>
117118
</dependencies>
118-
119-
119+
120+
120121
<build>
121122
<pluginManagement>
122123
<plugins>
123124
<plugin>
124125
<groupId>org.mortbay.jetty</groupId>
125126
<artifactId>jetty-maven-plugin</artifactId>
126127
</plugin>
127-
128+
128129
<plugin>
129130
<groupId>org.apache.maven.plugins</groupId>
130131
<artifactId>maven-war-plugin</artifactId>
131132
<version>2.2</version>
132133
</plugin>
133-
134+
134135
<plugin>
135136
<artifactId>maven-antrun-plugin</artifactId>
136137
</plugin>
137138
</plugins>
138139
</pluginManagement>
139-
140+
140141
<plugins>
141142
<plugin>
142143
<artifactId>maven-compiler-plugin</artifactId>
@@ -146,7 +147,7 @@
146147
<target>1.6</target>
147148
</configuration>
148149
</plugin>
149-
150+
150151
<plugin>
151152
<groupId>org.apache.maven.plugins</groupId>
152153
<artifactId>maven-source-plugin</artifactId>
@@ -159,17 +160,23 @@
159160
</execution>
160161
</executions>
161162
</plugin>
162-
163+
163164
<plugin>
164165
<artifactId>maven-eclipse-plugin</artifactId>
165166
<version>2.5.1</version>
166167
</plugin>
167-
168+
168169
<plugin>
169170
<groupId>org.apache.maven.plugins</groupId>
170171
<artifactId>maven-javadoc-plugin</artifactId>
171172
<version>2.8.1</version>
172173
</plugin>
174+
175+
<plugin>
176+
<groupId>org.codehaus.mojo</groupId>
177+
<artifactId>versions-maven-plugin</artifactId>
178+
<version>2.1</version>
179+
</plugin>
173180
</plugins>
174181
</build>
175182

0 commit comments

Comments
 (0)