Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Thihup authored and Thiago Henrique Hupner committed May 23, 2022
1 parent 10de65a commit f1bb4c5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions dev.thihup.joel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>4.9.2</version>
<version>4.9.3</version>
</dependency>
</dependencies>

Expand All @@ -29,7 +29,7 @@
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.9.2</version>
<version>4.9.3</version>
<configuration>
<arguments>
<argument>-no-listener</argument>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.1</version>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.8.1</version>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.33</version>
<version>1.34</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -50,7 +50,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.10.0</version>
<configuration>
<showWarnings>true</showWarnings>
<compilerArgs>
Expand All @@ -62,7 +62,7 @@
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.9.2</version>
<version>4.9.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
10 changes: 5 additions & 5 deletions tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<version>3.0.0</version>
<executions>
<execution>
<id>validate</id>
Expand All @@ -33,12 +33,12 @@
<move file="${project.build.directory}/expression-language-tck"
tofile="${project.build.directory}/tck"/>

<!-- download, unzip, rename and chmod Ant 1.10.9 -->
<get src="https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.9-bin.zip"
<!-- download, unzip, rename and chmod Ant 1.10.12 -->
<get src="https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.12-bin.zip"
dest="${project.build.directory}/ant.zip" skipexisting="true"/>
<unzip src="${project.build.directory}/ant.zip"
dest="${project.build.directory}"/>
<move file="${project.build.directory}/apache-ant-1.10.9"
<move file="${project.build.directory}/apache-ant-1.10.12"
tofile="${project.build.directory}/ant"/>
<chmod dir="${ant.home}/bin"
perm="ugo+rx"
Expand Down Expand Up @@ -121,7 +121,7 @@
<artifactItem>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>4.9.2</version>
<version>4.9.3</version>
<outputDirectory>${work.home}/jars</outputDirectory>
<destFileName>antlr.jar</destFileName>
</artifactItem>
Expand Down

0 comments on commit f1bb4c5

Please sign in to comment.