|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <parent> |
| 7 | + <groupId>org.sonarsource.java</groupId> |
| 8 | + <artifactId>java-checks-test-sources</artifactId> |
| 9 | + <version>8.11.0-SNAPSHOT</version> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <artifactId>spring-web-4.0</artifactId> |
| 13 | + <name>SonarQube Java :: Checks Test Sources :: Spring Web 4.0</name> |
| 14 | + |
| 15 | + <properties> |
| 16 | + <sonar.skip>true</sonar.skip> |
| 17 | + <forbiddenapis.skip>true</forbiddenapis.skip> |
| 18 | + <skipTests>true</skipTests> |
| 19 | + <maven.deploy.skip>true</maven.deploy.skip> |
| 20 | + </properties> |
| 21 | + |
| 22 | + <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>org.springframework</groupId> |
| 25 | + <artifactId>spring-web</artifactId> |
| 26 | + <version>4.0.0.RELEASE</version> |
| 27 | + <scope>provided</scope> |
| 28 | + </dependency> |
| 29 | + </dependencies> |
| 30 | + |
| 31 | + <profiles> |
| 32 | + <profile> |
| 33 | + <id>analyze-tests</id> |
| 34 | + <properties> |
| 35 | + <sonar.skip>false</sonar.skip> |
| 36 | + </properties> |
| 37 | + </profile> |
| 38 | + </profiles> |
| 39 | + |
| 40 | + <build> |
| 41 | + <plugins> |
| 42 | + <plugin> |
| 43 | + <groupId>org.apache.maven.plugins</groupId> |
| 44 | + <artifactId>maven-compiler-plugin</artifactId> |
| 45 | + <configuration> |
| 46 | + <release>22</release> |
| 47 | + <source>22</source> |
| 48 | + <target>22</target> |
| 49 | + </configuration> |
| 50 | + </plugin> |
| 51 | + <plugin> |
| 52 | + <groupId>org.apache.maven.plugins</groupId> |
| 53 | + <artifactId>maven-surefire-plugin</artifactId> |
| 54 | + <configuration> |
| 55 | + <argLine>--enable-preview</argLine> |
| 56 | + </configuration> |
| 57 | + </plugin> |
| 58 | + <plugin> |
| 59 | + <groupId>org.simplify4u.plugins</groupId> |
| 60 | + <artifactId>sign-maven-plugin</artifactId> |
| 61 | + <executions> |
| 62 | + <execution> |
| 63 | + <id>sign-artifacts</id> |
| 64 | + <phase>none</phase> |
| 65 | + </execution> |
| 66 | + </executions> |
| 67 | + </plugin> |
| 68 | + <plugin> |
| 69 | + <artifactId>maven-jar-plugin</artifactId> |
| 70 | + <executions> |
| 71 | + <execution> |
| 72 | + <id>default-jar</id> |
| 73 | + <phase>none</phase> |
| 74 | + </execution> |
| 75 | + </executions> |
| 76 | + </plugin> |
| 77 | + <plugin> |
| 78 | + <artifactId>maven-source-plugin</artifactId> |
| 79 | + <executions> |
| 80 | + <execution> |
| 81 | + <id>attach-sources</id> |
| 82 | + <phase>none</phase> |
| 83 | + </execution> |
| 84 | + </executions> |
| 85 | + </plugin> |
| 86 | + <plugin> |
| 87 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 88 | + <executions> |
| 89 | + <execution> |
| 90 | + <id>attach-javadocs</id> |
| 91 | + <phase>none</phase> |
| 92 | + </execution> |
| 93 | + </executions> |
| 94 | + </plugin> |
| 95 | + <plugin> |
| 96 | + <artifactId>maven-install-plugin</artifactId> |
| 97 | + <executions> |
| 98 | + <execution> |
| 99 | + <id>default-install</id> |
| 100 | + <phase>none</phase> |
| 101 | + </execution> |
| 102 | + </executions> |
| 103 | + </plugin> |
| 104 | + <plugin> |
| 105 | + <groupId>com.mycila</groupId> |
| 106 | + <artifactId>license-maven-plugin</artifactId> |
| 107 | + <configuration> |
| 108 | + <licenseSets> |
| 109 | + <licenseSet> |
| 110 | + <excludes> |
| 111 | + <exclude>src/main/java/**</exclude> |
| 112 | + <exclude>src/test/java/**</exclude> |
| 113 | + </excludes> |
| 114 | + </licenseSet> |
| 115 | + </licenseSets> |
| 116 | + </configuration> |
| 117 | + </plugin> |
| 118 | + </plugins> |
| 119 | + </build> |
| 120 | + |
| 121 | +</project> |
0 commit comments