|
5 | 5 |
|
6 | 6 | <groupId>apijson.mongodb</groupId>
|
7 | 7 | <artifactId>apijson-mongodb</artifactId>
|
8 |
| - <version>1.0.0</version> |
| 8 | + <version>1.0.1</version> |
9 | 9 | <packaging>jar</packaging>
|
10 | 10 |
|
11 | 11 | <name>apijson-mongodb</name>
|
|
14 | 14 | <properties>
|
15 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
16 | 16 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
17 |
| - <java.version>1.8</java.version> |
| 17 | + <java.version>17</java.version> |
| 18 | + <maven.compiler.encoding>UTF-8</maven.compiler.encoding> |
| 19 | + <maven.compiler.source>17</maven.compiler.source> |
| 20 | + <maven.compiler.target>17</maven.compiler.target> |
18 | 21 | </properties>
|
19 | 22 |
|
20 | 23 | <dependencies>
|
|
25 | 28 | <version>1.2.83</version>
|
26 | 29 | </dependency>
|
27 | 30 | <dependency>
|
28 |
| - <groupId>org.mongodb</groupId> |
29 |
| - <artifactId>mongodb-jdbc</artifactId> |
30 |
| - <version>2.0.3</version> |
31 |
| - </dependency> |
| 31 | + <groupId>org.mongodb</groupId> |
| 32 | + <artifactId>mongodb-jdbc</artifactId> |
| 33 | + <version>2.0.3</version> |
| 34 | + </dependency> |
32 | 35 |
|
33 | 36 | </dependencies>
|
34 | 37 |
|
|
37 | 40 | <plugin>
|
38 | 41 | <groupId>org.apache.maven.plugins</groupId>
|
39 | 42 | <artifactId>maven-compiler-plugin</artifactId>
|
40 |
| - <version>3.8.1</version> |
| 43 | + <version>3.12.1</version> |
41 | 44 | <configuration>
|
42 |
| - <source>1.8</source> |
43 |
| - <target>1.8</target> |
| 45 | + <source>17</source> |
| 46 | + <target>17</target> |
44 | 47 | </configuration>
|
45 | 48 | </plugin>
|
| 49 | + |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-source-plugin</artifactId> |
| 53 | + <version>3.2.1</version> |
| 54 | + <executions> |
| 55 | + <execution> |
| 56 | + <phase>package</phase> |
| 57 | + <goals> |
| 58 | + <goal>jar-no-fork</goal> |
| 59 | + </goals> |
| 60 | + </execution> |
| 61 | + </executions> |
| 62 | + </plugin> |
46 | 63 | </plugins>
|
47 | 64 | </build>
|
48 | 65 |
|
|
0 commit comments