|
3 | 3 | <parent> |
4 | 4 | <groupId>com.fasterxml</groupId> |
5 | 5 | <artifactId>oss-parent</artifactId> |
6 | | - <version>24</version> |
| 6 | + <version>38</version> |
7 | 7 | </parent> |
8 | 8 | <groupId>com.fasterxml.util</groupId> |
9 | 9 | <artifactId>java-merge-sort</artifactId> |
10 | 10 | <name>java-merge-sort</name> |
11 | | - <version>1.1.0-SNAPSHOT</version> |
| 11 | + <version>1.0.2-SNAPSHOT</version> |
12 | 12 | <packaging>bundle</packaging> |
13 | 13 | <description>Basic configurable disk-backed N-way merge sort |
14 | 14 | </description> |
|
37 | 37 | <properties> |
38 | 38 | <javac.src.version>1.6</javac.src.version> |
39 | 39 | <javac.target.version>1.6</javac.target.version> |
| 40 | + |
| 41 | + <!-- 1.0.2 adds "Automatic-Module-Name" for JDK 9 --> |
| 42 | + <jdk.module.name>com.fasterxml.sort</jdk.module.name> |
40 | 43 | </properties> |
41 | 44 |
|
42 | 45 | <dependencyManagement> |
|
45 | 48 | <groupId>com.fasterxml.jackson</groupId> |
46 | 49 | <artifactId>jackson-bom</artifactId> |
47 | 50 | <type>pom</type> |
48 | | - <version>2.8.6</version> |
| 51 | + <version>2.9.9</version> |
49 | 52 | <scope>import</scope> |
50 | 53 | </dependency> |
51 | 54 | </dependencies> |
|
56 | 59 | <dependency> |
57 | 60 | <groupId>junit</groupId> |
58 | 61 | <artifactId>junit</artifactId> |
59 | | - <version>4.11</version> |
| 62 | + <version>4.12</version> |
60 | 63 | <scope>test</scope> |
61 | 64 | </dependency> |
62 | 65 |
|
|
86 | 89 | <target>${version.jdk}</target> |
87 | 90 | <encoding>UTF-8</encoding> |
88 | 91 | <links> |
89 | | - <link>http://docs.oracle.com/javase/7/docs/api/</link> |
| 92 | + <link>http://docs.oracle.com/javase/8/docs/api/</link> |
90 | 93 | </links> |
91 | 94 | </configuration> |
92 | 95 |
|
|
105 | 108 | <plugin> |
106 | 109 | <groupId>org.apache.felix</groupId> |
107 | 110 | <artifactId>maven-bundle-plugin</artifactId> |
108 | | - <version>2.3.7</version> |
109 | 111 | <extensions>true</extensions> |
110 | 112 | <configuration> |
111 | 113 | <instructions> |
| 114 | + <Automatic-Module-Name>${jdk.module.name}</Automatic-Module-Name> |
112 | 115 | <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> |
113 | 116 | <Bundle-Vendor>com.fasterxml</Bundle-Vendor> |
114 | 117 | <Import-Package> |
|
0 commit comments