Skip to content

Commit 4e6596f

Browse files
committed
cleanup old stuff
1 parent b4068b3 commit 4e6596f

File tree

3 files changed

+15
-25
lines changed

3 files changed

+15
-25
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@
1212
/json-smart-sample/.classpath
1313
/json-smart-sample/.project
1414
/json-smart-sample/.settings
15-
/json-smart-sample/target
15+
/json-smart-sample/target
16+
/parent/target

json-smart-mini/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<relativePath>../parent/pom.xml</relativePath>
1414
</parent>
1515

16-
<name>JSON Small and Fast Parser</name>
16+
<name>JSON Small and Fast Parser mini edition</name>
1717

1818
<description>
1919
JSON (JavaScript Object Notation) is a lightweight data-interchange format.

parent/pom.xml

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,11 @@
77
<name>Minidev public super pom</name>
88
<description>minidev common properties.</description>
99
<packaging>pom</packaging>
10-
<url>http://www.minidev.net/</url>
11-
12-
<parent>
13-
<groupId>org.sonatype.oss</groupId>
14-
<artifactId>oss-parent</artifactId>
15-
<version>7</version>
16-
</parent>
10+
<url>https://urielch.github.io/</url>
1711

1812
<organization>
1913
<name>Chemouni Uriel</name>
20-
<url>http://www.minidev.net/</url>
14+
<url>https://urielch.github.io/</url>
2115
</organization>
2216

2317
<developers>
@@ -48,16 +42,10 @@
4842

4943
<build>
5044
<plugins>
51-
<!-- <plugin> -->
52-
<!-- <groupId>org.apache.felix</groupId> -->
53-
<!-- <artifactId>maven-bundle-plugin</artifactId> -->
54-
<!-- <extensions>true</extensions> -->
55-
<!-- <version>2.3.7</version> -->
56-
<!-- </plugin> -->
5745
<plugin>
5846
<groupId>org.apache.maven.plugins</groupId>
5947
<artifactId>maven-source-plugin</artifactId>
60-
<version>2.1.2</version>
48+
<version>3.2.1</version>
6149
<executions>
6250
<execution>
6351
<id>bind-sources</id>
@@ -71,7 +59,7 @@
7159
<plugin>
7260
<groupId>org.apache.maven.plugins</groupId>
7361
<artifactId>maven-compiler-plugin</artifactId>
74-
<version>2.3.2</version>
62+
<version>3.8.1</version>
7563
<configuration>
7664
<encoding>UTF-8</encoding>
7765
<source>1.6</source>
@@ -95,7 +83,7 @@
9583
<plugin>
9684
<groupId>org.apache.maven.plugins</groupId>
9785
<artifactId>maven-jar-plugin</artifactId>
98-
<version>2.3.1</version>
86+
<version>3.2.0</version>
9987
<configuration>
10088
<excludes>
10189
<exclude>**/.svn/*</exclude>
@@ -107,7 +95,7 @@
10795
<plugin>
10896
<groupId>org.apache.maven.plugins</groupId>
10997
<artifactId>maven-javadoc-plugin</artifactId>
110-
<version>2.8</version>
98+
<version>3.2</version>
11199
<!-- ONLY NEEDED With jdk 1.7+ -->
112100
<!--
113101
<configuration>
@@ -139,7 +127,7 @@
139127
<plugin>
140128
<groupId>org.apache.maven.plugins</groupId>
141129
<artifactId>maven-checkstyle-plugin</artifactId>
142-
<version>2.6</version>
130+
<version>3.1.2</version>
143131
<configuration>
144132
<configLocation>config/sun_checks.xml</configLocation>
145133
</configuration>
@@ -149,15 +137,15 @@
149137

150138
<modules>
151139
<module>../json-smart</module>
152-
<!-- <module>../json-smart-mini</module> -->
140+
<module>../json-smart-mini</module>
153141
</modules>
154142

155143
<distributionManagement>
156144
<!-- My project's Sonatype repository to be used by the release plugin -->
157145
<repository>
158146
<id>sonatype-nexus-staging</id>
159147
<name>Nexus Release Repository</name>
160-
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
148+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
161149
</repository>
162150
<snapshotRepository>
163151
<id>sonatype-nexus-snapshots</id>
@@ -200,7 +188,7 @@
200188
<groupId>org.apache.maven.plugins</groupId>
201189
<artifactId>maven-gpg-plugin</artifactId>
202190
<!-- <version>1.0-alpha-4</version> -->
203-
<version>1.2</version>
191+
<version>1.6</version>
204192
<executions>
205193
<execution>
206194
<id>sign-artifacts</id>
@@ -215,6 +203,7 @@
215203
<plugin>
216204
<groupId>org.apache.maven.plugins</groupId>
217205
<artifactId>maven-javadoc-plugin</artifactId>
206+
<version>3.2.0</version>
218207
<executions>
219208
<execution>
220209
<id>attach-javadocs</id>
@@ -231,7 +220,7 @@
231220
<plugin>
232221
<groupId>org.apache.maven.plugins</groupId>
233222
<artifactId>maven-release-plugin</artifactId>
234-
<version>2.1</version>
223+
<version>3.0.0-M1</version>
235224
</plugin>
236225
</plugins>
237226
</build>

0 commit comments

Comments
 (0)