mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
60 lines
2.5 KiB
Diff
60 lines
2.5 KiB
Diff
diff --git a/core/pom.xml b/core/pom.xml
|
|
index 267689e..6b6e04d 100644
|
|
--- a/core/pom.xml
|
|
+++ b/core/pom.xml
|
|
@@ -34,6 +34,55 @@
|
|
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
|
|
<testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
|
|
<plugins>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-enforcer-plugin</artifactId>
|
|
+ <version>3.4.1</version>
|
|
+ <executions>
|
|
+ <execution>
|
|
+ <id>require-all-plugin-versions-to-be-set</id>
|
|
+ <phase>validate</phase>
|
|
+ <goals>
|
|
+ <goal>enforce</goal>
|
|
+ </goals>
|
|
+ <configuration>
|
|
+ <rules>
|
|
+ <requirePluginVersions />
|
|
+ </rules>
|
|
+ </configuration>
|
|
+ </execution>
|
|
+ </executions>
|
|
+ </plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
+ <version>3.2.5</version>
|
|
+ </plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-clean-plugin</artifactId>
|
|
+ <version>3.3.2</version>
|
|
+ </plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-install-plugin</artifactId>
|
|
+ <version>3.1.1</version>
|
|
+ </plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-site-plugin</artifactId>
|
|
+ <version>4.0.0-M13</version>
|
|
+ </plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
+ <version>3.3.1</version>
|
|
+ </plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-deploy-plugin</artifactId>
|
|
+ <version>3.1.1</version>
|
|
+ </plugin>
|
|
<plugin>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|