|
5 | 5 |
|
6 | 6 | <groupId>apijson.influxdb</groupId>
|
7 | 7 | <artifactId>apijson-influxdb</artifactId>
|
8 |
| - <version>1.0.0</version> |
| 8 | + <version>1.0.1</version> |
9 | 9 | <packaging>jar</packaging>
|
10 | 10 |
|
11 | 11 | <name>apijson-influxdb</name>
|
12 |
| - <description>A InfluxDB plugin for Tencent APIJSON</description> |
| 12 | + <description>An InfluxDB plugin for Tencent APIJSON</description> |
13 | 13 |
|
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>
|
|
27 | 30 | <dependency>
|
28 | 31 | <groupId>com.github.Tencent</groupId>
|
29 | 32 | <artifactId>APIJSON</artifactId>
|
30 |
| - <version>6.3.0</version> |
| 33 | + <version>7.0.3</version> |
31 | 34 | </dependency>
|
32 | 35 | <dependency>
|
33 | 36 | <groupId>org.influxdb</groupId>
|
|
42 | 45 | <plugin>
|
43 | 46 | <groupId>org.apache.maven.plugins</groupId>
|
44 | 47 | <artifactId>maven-compiler-plugin</artifactId>
|
45 |
| - <version>3.8.1</version> |
| 48 | + <version>3.12.1</version> |
46 | 49 | <configuration>
|
47 |
| - <source>1.8</source> |
48 |
| - <target>1.8</target> |
| 50 | + <source>17</source> |
| 51 | + <target>17</target> |
49 | 52 | </configuration>
|
50 | 53 | </plugin>
|
| 54 | + |
| 55 | + <plugin> |
| 56 | + <groupId>org.apache.maven.plugins</groupId> |
| 57 | + <artifactId>maven-source-plugin</artifactId> |
| 58 | + <version>3.2.1</version> |
| 59 | + <executions> |
| 60 | + <execution> |
| 61 | + <phase>package</phase> |
| 62 | + <goals> |
| 63 | + <goal>jar-no-fork</goal> |
| 64 | + </goals> |
| 65 | + </execution> |
| 66 | + </executions> |
| 67 | + </plugin> |
51 | 68 | </plugins>
|
52 | 69 | </build>
|
53 | 70 |
|
|
0 commit comments