Skip to content

Commit 309223e

Browse files
authored
Merge pull request #65 from netplex/bump
merge 2.4.1 version
2 parents 252fb14 + e010417 commit 309223e

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

accessors-smart/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<description>Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls.
99
</description>
1010
<packaging>bundle</packaging>
11-
<url>http://www.minidev.net/</url>
11+
<url>https://urielch.github.io/</url>
1212
<organization>
1313
<name>Chemouni Uriel</name>
14-
<url>http://www.minidev.net/</url>
14+
<url>https://urielch.github.io/</url>
1515
</organization>
1616
<developers>
1717
<developer>

accessors-smart/src/test/java/net/minidev/asm/ASMTest.java

-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ public void testGet() throws Exception {
4545
// f = new FastMapTest_3();
4646
// f = new FastMapTest_2<String>(m);
4747
// f = new FastMapTest_3();
48-
// System.out.println(m.get("A"));
4948
// 4 entré
5049
// map => 1.279
5150
// fastMap => 3.323
@@ -102,7 +101,6 @@ public void testGet() throws Exception {
102101
// m.get("I");
103102
// }
104103
// T = System.nanoTime() - T;
105-
// System.out.println(NumberFormat.getInstance().format(T));
106104
// 10 774 968
107105
// 596 295 451
108106
// 2 321 087 341
@@ -116,7 +114,6 @@ public void testGet() throws Exception {
116114
// for (int i = 0; i < 2000000; i++)
117115
// subtext(ac);
118116
// T1 = System.currentTimeMillis() - T1;
119-
// System.out.println("// Time: " + T1);
120117
}
121118

122119
@Test

json-smart-action/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.
1313
</description>
1414
<packaging>bundle</packaging>
15-
<url>http://www.minidev.net/</url>
15+
<url>https://urielch.github.io/</url>
1616
<organization>
1717
<name>Chemouni Uriel</name>
18-
<url>http://www.minidev.net/</url>
18+
<url>https://urielch.github.io/</url>
1919
</organization>
2020
<developers>
2121
<developer>

json-smart/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.
1414
</description>
1515
<packaging>bundle</packaging>
16-
<url>http://www.minidev.net/</url>
16+
<url>https://urielch.github.io/</url>
1717
<organization>
1818
<name>Chemouni Uriel</name>
19-
<url>http://www.minidev.net/</url>
19+
<url>https://urielch.github.io/</url>
2020
</organization>
2121
<developers>
2222
<developer>

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<name>Minidev super pom</name>
88
<description>minidev common properties.</description>
99
<packaging>pom</packaging>
10-
<url>http://www.minidev.net/</url>
10+
<url>https://urielch.github.io/</url>
1111

1212
<organization>
1313
<name>Chemouni Uriel</name>
14-
<url>http://www.minidev.net/</url>
14+
<url>https://urielch.github.io/</url>
1515
</organization>
1616

1717
<developers>
@@ -45,7 +45,7 @@
4545
<plugin> <!-- updated on 29/07/2015 -->
4646
<groupId>org.apache.maven.plugins</groupId>
4747
<artifactId>maven-source-plugin</artifactId>
48-
<version>2.4</version>
48+
<version>3.2.1</version>
4949
<executions>
5050
<execution>
5151
<id>bind-sources</id>

0 commit comments

Comments
 (0)