|
1 | 1 | <?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"> |
3 | 4 | <modelVersion>4.0.0</modelVersion>
|
4 | 5 |
|
5 | 6 | <groupId>org.jsondoc</groupId>
|
6 | 7 | <artifactId>jsondoc-master</artifactId>
|
7 |
| - <version>1.0.2-SNAPSHOT</version> |
| 8 | + <version>1.0.2</version> |
8 | 9 | <packaging>pom</packaging>
|
9 | 10 | <name>jsondoc-master</name>
|
10 |
| - |
| 11 | + |
11 | 12 | <developers>
|
12 | 13 | <developer>
|
13 | 14 | <name>Fabio Maffioletti</name>
|
14 | 15 | </developer>
|
15 | 16 | </developers>
|
16 |
| - |
| 17 | + |
17 | 18 | <scm>
|
18 | 19 | <connection>scm:git:git@github.com:fabiomaffioletti/jsondoc.git</connection>
|
19 | 20 | <url>scm:git:git@github.com:fabiomaffioletti/jsondoc.git</url>
|
|
25 | 26 | <module>jsondoc-springmvc</module>
|
26 | 27 | <module>jsondoc-sample-springmvc</module>
|
27 | 28 | <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> |
32 | 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
33 | 34 | </properties>
|
34 |
| - |
| 35 | + |
35 | 36 | <repositories>
|
36 | 37 | <repository>
|
37 | 38 | <id>springource-artifactory</id>
|
38 | 39 | <url>http://repo.springsource.org/libs-milestone</url>
|
39 | 40 | </repository>
|
40 | 41 | </repositories>
|
41 |
| - |
| 42 | + |
42 | 43 | <dependencyManagement>
|
43 | 44 | <dependencies>
|
44 | 45 | <!-- Jsondoc -->
|
|
47 | 48 | <artifactId>jsondoc-core</artifactId>
|
48 | 49 | <version>${project.version}</version>
|
49 | 50 | </dependency>
|
50 |
| - |
| 51 | + |
51 | 52 | <dependency>
|
52 | 53 | <groupId>org.jsondoc</groupId>
|
53 | 54 | <artifactId>jsondoc-springmvc</artifactId>
|
54 | 55 | <version>${project.version}</version>
|
55 | 56 | </dependency>
|
56 |
| - |
| 57 | + |
57 | 58 | <!-- Spring -->
|
58 | 59 | <dependency>
|
59 | 60 | <groupId>org.springframework</groupId>
|
60 | 61 | <artifactId>spring-webmvc</artifactId>
|
61 | 62 | <version>3.1.2.RELEASE</version>
|
62 | 63 | </dependency>
|
63 |
| - |
| 64 | + |
64 | 65 | <!-- Reflection -->
|
65 | 66 | <dependency>
|
66 | 67 | <groupId>org.reflections</groupId>
|
67 | 68 | <artifactId>reflections</artifactId>
|
68 | 69 | <version>0.9.9-RC1</version>
|
69 | 70 | </dependency>
|
70 |
| - |
| 71 | + |
71 | 72 | <!-- Json -->
|
72 | 73 | <dependency>
|
73 | 74 | <groupId>org.codehaus.jackson</groupId>
|
74 | 75 | <artifactId>jackson-mapper-asl</artifactId>
|
75 | 76 | <version>1.9.8</version>
|
76 | 77 | </dependency>
|
77 |
| - |
| 78 | + |
78 | 79 | <!-- Logging -->
|
79 | 80 | <dependency>
|
80 | 81 | <groupId>log4j</groupId>
|
81 | 82 | <artifactId>log4j</artifactId>
|
82 | 83 | <version>1.2.17</version>
|
83 | 84 | </dependency>
|
84 |
| - |
| 85 | + |
85 | 86 | <!-- Test -->
|
86 | 87 | <dependency>
|
87 | 88 | <groupId>org.springframework</groupId>
|
88 | 89 | <artifactId>spring-test</artifactId>
|
89 | 90 | <version>3.1.2.RELEASE</version>
|
90 | 91 | <scope>test</scope>
|
91 | 92 | </dependency>
|
92 |
| - |
| 93 | + |
93 | 94 | <dependency>
|
94 | 95 | <groupId>org.springframework</groupId>
|
95 | 96 | <artifactId>spring-test-mvc</artifactId>
|
96 | 97 | <version>1.0.0.M1</version>
|
97 | 98 | <scope>test</scope>
|
98 | 99 | </dependency>
|
99 |
| - |
| 100 | + |
100 | 101 | <!-- Other -->
|
101 | 102 | <dependency>
|
102 | 103 | <groupId>javax.servlet</groupId>
|
103 | 104 | <artifactId>servlet-api</artifactId>
|
104 | 105 | <version>2.4</version>
|
105 | 106 | </dependency>
|
106 |
| - |
| 107 | + |
107 | 108 | </dependencies>
|
108 | 109 | </dependencyManagement>
|
109 | 110 |
|
|
115 | 116 | <scope>test</scope>
|
116 | 117 | </dependency>
|
117 | 118 | </dependencies>
|
118 |
| - |
119 |
| - |
| 119 | + |
| 120 | + |
120 | 121 | <build>
|
121 | 122 | <pluginManagement>
|
122 | 123 | <plugins>
|
123 | 124 | <plugin>
|
124 | 125 | <groupId>org.mortbay.jetty</groupId>
|
125 | 126 | <artifactId>jetty-maven-plugin</artifactId>
|
126 | 127 | </plugin>
|
127 |
| - |
| 128 | + |
128 | 129 | <plugin>
|
129 | 130 | <groupId>org.apache.maven.plugins</groupId>
|
130 | 131 | <artifactId>maven-war-plugin</artifactId>
|
131 | 132 | <version>2.2</version>
|
132 | 133 | </plugin>
|
133 |
| - |
| 134 | + |
134 | 135 | <plugin>
|
135 | 136 | <artifactId>maven-antrun-plugin</artifactId>
|
136 | 137 | </plugin>
|
137 | 138 | </plugins>
|
138 | 139 | </pluginManagement>
|
139 |
| - |
| 140 | + |
140 | 141 | <plugins>
|
141 | 142 | <plugin>
|
142 | 143 | <artifactId>maven-compiler-plugin</artifactId>
|
|
146 | 147 | <target>1.6</target>
|
147 | 148 | </configuration>
|
148 | 149 | </plugin>
|
149 |
| - |
| 150 | + |
150 | 151 | <plugin>
|
151 | 152 | <groupId>org.apache.maven.plugins</groupId>
|
152 | 153 | <artifactId>maven-source-plugin</artifactId>
|
|
159 | 160 | </execution>
|
160 | 161 | </executions>
|
161 | 162 | </plugin>
|
162 |
| - |
| 163 | + |
163 | 164 | <plugin>
|
164 | 165 | <artifactId>maven-eclipse-plugin</artifactId>
|
165 | 166 | <version>2.5.1</version>
|
166 | 167 | </plugin>
|
167 |
| - |
| 168 | + |
168 | 169 | <plugin>
|
169 | 170 | <groupId>org.apache.maven.plugins</groupId>
|
170 | 171 | <artifactId>maven-javadoc-plugin</artifactId>
|
171 | 172 | <version>2.8.1</version>
|
172 | 173 | </plugin>
|
| 174 | + |
| 175 | + <plugin> |
| 176 | + <groupId>org.codehaus.mojo</groupId> |
| 177 | + <artifactId>versions-maven-plugin</artifactId> |
| 178 | + <version>2.1</version> |
| 179 | + </plugin> |
173 | 180 | </plugins>
|
174 | 181 | </build>
|
175 | 182 |
|
|
0 commit comments