Skip to content

Commit

Permalink
#10
Browse files Browse the repository at this point in the history
update to gradle 8.10.1
  • Loading branch information
reallyinsane committed Sep 16, 2024
1 parent b0e6a5f commit f138be6
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
24 changes: 24 additions & 0 deletions mathan-latex-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@
<version>${gradle.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-stdlib-java-extensions</artifactId>
<version>${gradle.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-api</artifactId>
Expand Down Expand Up @@ -343,6 +349,24 @@
</resources>
</configuration>
</execution>
<execution>
<id>copy-gradle-stdlib-java-extensions</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}/../target/gradle-m2/org/gradle/gradle-stdlib-java-extensions/${gradle.version}</outputDirectory>
<resources>
<resource>
<directory>${project.basedir}/../target/gradle-distribution/gradle-${gradle.version}/lib</directory>
<includes>
<include>gradle-stdlib-java-extensions-${gradle.version}.jar</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down
4 changes: 4 additions & 0 deletions mathan-latex-gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@
<groupId>org.gradle</groupId>
<artifactId>gradle-base-services</artifactId>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-stdlib-java-extensions</artifactId>
</dependency>

<dependency>
<groupId>org.apache.groovy</groupId>
Expand Down

0 comments on commit f138be6

Please sign in to comment.