|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <groupId>cnuphys</groupId> |
| 4 | + <artifactId>cnuphys-clas12</artifactId> |
| 5 | + <version>2.0-SNAPSHOT</version> |
| 6 | + <packaging>pom</packaging> |
| 7 | + |
| 8 | + <repositories> |
| 9 | + <repository> |
| 10 | + <id>clas12maven</id> |
| 11 | + <url>https://clasweb.jlab.org/clas12maven</url> |
| 12 | + </repository> |
| 13 | + |
| 14 | + <repository> |
| 15 | + <id>mvnrepository</id> |
| 16 | + <url>http://central.maven.org/maven2/</url> |
| 17 | + </repository> |
| 18 | + </repositories> |
| 19 | + |
| 20 | + <dependencies> |
| 21 | + <dependency> |
| 22 | + <groupId>com.github.spotbugs</groupId> |
| 23 | + <artifactId>spotbugs</artifactId> |
| 24 | + <version>4.9.1</version> |
| 25 | + </dependency> |
| 26 | + </dependencies> |
| 27 | + |
| 28 | + <build> |
| 29 | + <extensions> |
| 30 | + <extension> |
| 31 | + <groupId>org.apache.maven.wagon</groupId> |
| 32 | + <artifactId>wagon-ssh-external</artifactId> |
| 33 | + <version>3.5.3</version> |
| 34 | + </extension> |
| 35 | + </extensions> |
| 36 | + |
| 37 | + <plugins> |
| 38 | + <plugin> |
| 39 | + <groupId>com.github.spotbugs</groupId> |
| 40 | + <artifactId>spotbugs-maven-plugin</artifactId> |
| 41 | + <version>4.9.3.0</version> |
| 42 | + <configuration> |
| 43 | + <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile> |
| 44 | + </configuration> |
| 45 | + </plugin> |
| 46 | + <plugin> |
| 47 | + <groupId>org.apache.maven.plugins</groupId> |
| 48 | + <artifactId>maven-compiler-plugin</artifactId> |
| 49 | + <version>3.14.0</version> |
| 50 | + <configuration> |
| 51 | + <encoding>UTF-8</encoding> |
| 52 | + <release>21</release> |
| 53 | + </configuration> |
| 54 | + </plugin> |
| 55 | + <plugin> |
| 56 | + <groupId>org.apache.maven.plugins</groupId> |
| 57 | + <artifactId>maven-resources-plugin</artifactId> |
| 58 | + <version>3.3.1</version> |
| 59 | + <configuration> |
| 60 | + <encoding>UTF-8</encoding> |
| 61 | + </configuration> |
| 62 | + </plugin> |
| 63 | + </plugins> |
| 64 | + </build> |
| 65 | + |
| 66 | + <distributionManagement> |
| 67 | + <repository> |
| 68 | + <id>ssh-clasweb</id> |
| 69 | + < url>scpexe:// [email protected]/group/clas/www/clasweb/html/clas12maven</ url> |
| 70 | + </repository> |
| 71 | + </distributionManagement> |
| 72 | + |
| 73 | +</project> |
0 commit comments