- Notifications
You must be signed in to change notification settings - Fork70
Update versions of dependency and java 17#90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
2e3914881be8d38f10504c9904343a042ea9365a59File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -23,8 +23,8 @@ | ||
| <scm> | ||
| <url>https://github.com/ECharts-Java/ECharts-Java</url> | ||
| <connection>scm:git:https://github.com/ECharts-Java/ECharts-Java.git</connection> | ||
| <developerConnection>scm:git:https://github.com/ECharts-Java</developerConnection> | ||
Comment on lines +26 to +27 Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. curious what this change is for? ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. | ||
| </scm> | ||
| <developers> | ||
| @@ -42,8 +42,32 @@ | ||
| <properties> | ||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| <maven.compiler.source>17</maven.compiler.source> | ||
| <maven.compiler.target>17</maven.compiler.target> | ||
| <!-- Dependency versions--> | ||
| <junit.version>5.12.1</junit.version> | ||
| <lombok.version>1.18.30</lombok.version> | ||
| <gson.version>2.12.1</gson.version> | ||
| <handlebars.version>4.4.0</handlebars.version> | ||
| <slf4j.version>2.0.17</slf4j.version> | ||
| <checkstyle.version>10.22.0</checkstyle.version> | ||
| <!-- Plugin versions--> | ||
| <maven-source-plugin.version>3.3.1</maven-source-plugin.version> | ||
| <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> | ||
| <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> | ||
| <maven-clean-plugin.version>3.3.1</maven-clean-plugin.version> | ||
| <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> | ||
| <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version> | ||
| <maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version> | ||
| <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> | ||
| <maven-install-plugin.version>3.1.1</maven-install-plugin.version> | ||
| <maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version> | ||
| <maven-site-plugin.version>3.21.0</maven-site-plugin.version> | ||
| <maven-project-info-reports-plugin.version>3.9.0</maven-project-info-reports-plugin.version> | ||
| <maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version> | ||
| <maven-jxr-plugin.version>3.6.0</maven-jxr-plugin.version> | ||
| </properties> | ||
| <distributionManagement> | ||
| @@ -59,33 +83,33 @@ | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>org.junit.jupiter</groupId> | ||
| <artifactId>junit-jupiter-engine</artifactId> | ||
| <version>${junit.version}</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok--> | ||
| <dependency> | ||
| <groupId>org.projectlombok</groupId> | ||
| <artifactId>lombok</artifactId> | ||
| <version>${lombok.version}</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson--> | ||
| <dependency> | ||
| <groupId>com.google.code.gson</groupId> | ||
| <artifactId>gson</artifactId> | ||
| <version>${gson.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.github.jknack</groupId> | ||
| <artifactId>handlebars</artifactId> | ||
| <version>${handlebars.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-simple</artifactId> | ||
| <version>${slf4j.version}</version> | ||
| </dependency> | ||
| </dependencies> | ||
| @@ -97,7 +121,7 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-source-plugin</artifactId> | ||
| <version>${maven-source-plugin.version}</version> | ||
| <executions> | ||
| <execution> | ||
| <id>attach-sources</id> | ||
| @@ -110,7 +134,7 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-javadoc-plugin</artifactId> | ||
| <version>${maven-javadoc-plugin.version}</version> | ||
| <executions> | ||
| <execution> | ||
| <id>attach-javadocs</id> | ||
| @@ -120,7 +144,7 @@ | ||
| </execution> | ||
| </executions> | ||
| <configuration> | ||
| <source>17</source> | ||
| <additionalparam>-Xdoclint:all -Xdoclint:-missing</additionalparam> | ||
| <additionalOptions>-Xdoclint:all -Xdoclint:-missing</additionalOptions> | ||
| <additionalJOptions> | ||
| @@ -132,7 +156,7 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-gpg-plugin</artifactId> | ||
| <version>${maven-gpg-plugin.version}</version> | ||
| <executions> | ||
| <execution> | ||
| <id>sign-artifacts</id> | ||
| @@ -155,60 +179,60 @@ | ||
| <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle--> | ||
| <plugin> | ||
| <artifactId>maven-clean-plugin</artifactId> | ||
| <version>${maven-clean-plugin.version}</version> | ||
| </plugin> | ||
| <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging--> | ||
| <plugin> | ||
| <artifactId>maven-resources-plugin</artifactId> | ||
| <version>${maven-resources-plugin.version}</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>${maven-compiler-plugin.version}</version> | ||
| <configuration> | ||
| <annotationProcessorPaths> | ||
| <path> | ||
| <groupId>org.projectlombok</groupId> | ||
| <artifactId>lombok</artifactId> | ||
| <version>${lombok.version}</version> | ||
| </path> | ||
| </annotationProcessorPaths> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-surefire-plugin</artifactId> | ||
| <version>${maven-surefire-plugin.version}</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-jar-plugin</artifactId> | ||
| <version>${maven-jar-plugin.version}</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-install-plugin</artifactId> | ||
| <version>${maven-install-plugin.version}</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-deploy-plugin</artifactId> | ||
| <version>${maven-deploy-plugin.version}</version> | ||
| </plugin> | ||
| <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle--> | ||
| <plugin> | ||
| <artifactId>maven-site-plugin</artifactId> | ||
| <version>${maven-site-plugin.version}</version> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-project-info-reports-plugin</artifactId> | ||
| <version>${maven-project-info-reports-plugin.version}</version> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-checkstyle-plugin</artifactId> | ||
| <version>${maven-checkstyle-plugin.version}</version> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>com.puppycrawl.tools</groupId> | ||
| <artifactId>checkstyle</artifactId> | ||
| <version>${checkstyle.version}</version> | ||
| </dependency> | ||
| </dependencies> | ||
| </plugin> | ||
| @@ -221,15 +245,15 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-checkstyle-plugin</artifactId> | ||
| <version>${maven-checkstyle-plugin.version}</version> | ||
| <configuration> | ||
| <configLocation>checkstyle.xml</configLocation> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-jxr-plugin</artifactId> | ||
| <version>${maven-jxr-plugin.version}</version> | ||
| </plugin> | ||
| </plugins> | ||
| </reporting> | ||
Uh oh!
There was an error while loading.Please reload this page.
