|
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.github.servanter</groupId> |
5 |
| - <artifactId>netsfjson-support-spring</artifactId> |
6 |
| - <version>0.0.1-SNAPSHOT</version> |
7 |
| - <packaging>jar</packaging> |
8 |
| - <name>json-lib-support-spring</name> |
9 |
| - <distributionManagement> |
10 |
| - <snapshotRepository> |
11 |
| - <id>ossrh</id> |
12 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
13 |
| - </snapshotRepository> |
14 |
| - <repository> |
15 |
| - <id>ossrh</id> |
16 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
17 |
| - </repository> |
18 |
| - </distributionManagement> |
19 |
| - <dependencies> |
20 |
| - <dependency> |
21 |
| - <groupId>net.sf.json-lib</groupId> |
22 |
| - <artifactId>json-lib</artifactId> |
23 |
| - <version>2.2.2</version> |
24 |
| - <classifier>jdk15</classifier> |
25 |
| - </dependency> |
26 |
| - <dependency> |
27 |
| - <groupId>org.springframework</groupId> |
28 |
| - <artifactId>spring-web</artifactId> |
29 |
| - <version>3.2.0.RELEASE</version> |
30 |
| - </dependency> |
31 |
| - <dependency> |
32 |
| - <groupId>javax.servlet</groupId> |
33 |
| - <artifactId>servlet-api</artifactId> |
34 |
| - <version>2.4</version> |
35 |
| - </dependency> |
36 |
| - </dependencies> |
37 |
| - <build> |
38 |
| - <plugins> |
39 |
| - <plugin> |
40 |
| - <artifactId>maven-compiler-plugin</artifactId> |
41 |
| - <version>2.3.2</version> |
42 |
| - <configuration> |
43 |
| - <source>1.6</source> |
44 |
| - <target>1.6</target> |
45 |
| - </configuration> |
46 |
| - </plugin> |
47 |
| - <plugin> |
48 |
| - <groupId>org.apache.maven.plugins</groupId> |
49 |
| - <artifactId>maven-source-plugin</artifactId> |
50 |
| - <version>2.2.1</version> |
51 |
| - <executions> |
52 |
| - <execution> |
53 |
| - <id>attach-sources</id> |
54 |
| - <goals> |
55 |
| - <goal>jar-no-fork</goal> |
56 |
| - </goals> |
57 |
| - </execution> |
58 |
| - </executions> |
59 |
| - </plugin> |
60 |
| - <plugin> |
61 |
| - <groupId>org.apache.maven.plugins</groupId> |
62 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
63 |
| - <version>2.9.1</version> |
64 |
| - <executions> |
65 |
| - <execution> |
66 |
| - <id>attach-javadocs</id> |
67 |
| - <goals> |
68 |
| - <goal>jar</goal> |
69 |
| - </goals> |
70 |
| - </execution> |
71 |
| - </executions> |
72 |
| - </plugin> |
73 |
| - </plugins> |
74 |
| - </build> |
75 |
| -</project> |
| 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.github.servanter</groupId> |
| 5 | + <artifactId>netsfjson-support-spring</artifactId> |
| 6 | + <version>1.0.0</version> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <name>json-lib-support-spring</name> |
| 9 | + <distributionManagement> |
| 10 | + <snapshotRepository> |
| 11 | + <id>ossrh</id> |
| 12 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 13 | + </snapshotRepository> |
| 14 | + <repository> |
| 15 | + <id>ossrh</id> |
| 16 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 17 | + </repository> |
| 18 | + </distributionManagement> |
| 19 | + <dependencies> |
| 20 | + <dependency> |
| 21 | + <groupId>net.sf.json-lib</groupId> |
| 22 | + <artifactId>json-lib</artifactId> |
| 23 | + <version>2.2.2</version> |
| 24 | + <classifier>jdk15</classifier> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>org.springframework</groupId> |
| 28 | + <artifactId>spring-web</artifactId> |
| 29 | + <version>3.2.0.RELEASE</version> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>javax.servlet</groupId> |
| 33 | + <artifactId>servlet-api</artifactId> |
| 34 | + <version>2.4</version> |
| 35 | + </dependency> |
| 36 | + </dependencies> |
| 37 | + <build> |
| 38 | + <plugins> |
| 39 | + <plugin> |
| 40 | + <artifactId>maven-compiler-plugin</artifactId> |
| 41 | + <version>2.3.2</version> |
| 42 | + <configuration> |
| 43 | + <source>1.6</source> |
| 44 | + <target>1.6</target> |
| 45 | + </configuration> |
| 46 | + </plugin> |
| 47 | + <plugin> |
| 48 | + <groupId>org.apache.maven.plugins</groupId> |
| 49 | + <artifactId>maven-source-plugin</artifactId> |
| 50 | + <version>2.2.1</version> |
| 51 | + <executions> |
| 52 | + <execution> |
| 53 | + <id>attach-sources</id> |
| 54 | + <goals> |
| 55 | + <goal>jar-no-fork</goal> |
| 56 | + </goals> |
| 57 | + </execution> |
| 58 | + </executions> |
| 59 | + </plugin> |
| 60 | + <plugin> |
| 61 | + <groupId>org.apache.maven.plugins</groupId> |
| 62 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 63 | + <version>2.9.1</version> |
| 64 | + <executions> |
| 65 | + <execution> |
| 66 | + <id>attach-javadocs</id> |
| 67 | + <goals> |
| 68 | + <goal>jar</goal> |
| 69 | + </goals> |
| 70 | + </execution> |
| 71 | + </executions> |
| 72 | + </plugin> |
| 73 | + </plugins> |
| 74 | + </build> |
| 75 | +</project> |
0 commit comments