Skip to content

Commit

Permalink
2.24.0, update dependency patch versions, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
blutorange committed Oct 4, 2022
1 parent b7f5f15 commit 9ab5072
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ This plugin combines and minimizes JavaScript files. It produces a merged and a

Requires at least Java 11.

# Notes regarding changes and updates

* Closure compiler is pretty stable right now and rarely adds completely new features. It seems to concentrate on stability and bug fixes. I'll update closure compiler every few months. If you need an update immediately for a particular bug fix, feel free to open an issue.
* There are many low-level options in closure compiler, most of which are not exposed by this plugin, as I do not have any use case. If you are missing an option, also feel free to open an issue.

# Usage

Configure your project's `pom.xml` to run the plugin during the project's build cycle.
Expand Down Expand Up @@ -38,7 +43,7 @@ Configure your project's `pom.xml` to run the plugin during the project's build
<plugin>
<groupId>com.github.blutorange</groupId>
<artifactId>closure-compiler-maven-plugin</artifactId>
<version>2.23.0</version>
<version>2.24.0</version>
<configuration>
<!-- Base configuration for all executions (bundles) -->
<baseSourceDir>${project.basedir}/src/main/resources</baseSourceDir>
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.global.server>github</github.global.server>
<maven.version>3.8.5</maven.version>
<maven.embedder.version>3.8.5</maven.embedder.version>
<maven.version>3.8.6</maven.version>
<maven.embedder.version>3.8.6</maven.embedder.version>
<maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<maven-plugin-plugin.version>3.6.4</maven-plugin-plugin.version>
Expand All @@ -86,7 +86,7 @@
<maven-release-plugin-version>2.5.3</maven-release-plugin-version>
<maven-site-plugin.version>3.7.1</maven-site-plugin.version>
<maven-jxr-plugin.version>2.1</maven-jxr-plugin.version>
<maven.plugin.api.version>3.8.5</maven.plugin.api.version>
<maven.plugin.api.version>3.8.6</maven.plugin.api.version>
<maven.plugin.annotations.version>3.6.4</maven.plugin.annotations.version>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version>
Expand All @@ -102,8 +102,8 @@
<commons-io-version>2.11.0</commons-io-version>
<commons.collections4.version>4.4</commons.collections4.version>
<commons-lang3-version>3.12.0</commons-lang3-version>
<commons-text.version>1.9</commons-text.version>
<gson.version>2.9.0</gson.version>
<commons-text.version>1.10.0</commons-text.version>
<gson.version>2.9.1</gson.version>
<plexus.build.api.version>0.0.7</plexus.build.api.version>
<site-maven-plugin.version>0.12</site-maven-plugin.version>
</properties>
Expand Down Expand Up @@ -150,13 +150,13 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<version>2.0.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.25</version>
<version>2.0.3</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 9ab5072

Please sign in to comment.