You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.6 KiB
43 lines
1.6 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.keyware.sonar</groupId>
|
|
<artifactId>sonar-keyware</artifactId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
|
|
<!--<groupId>com.keyware.sonar</groupId>-->
|
|
<artifactId>uut-example</artifactId>
|
|
<version>1.0</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.mycila</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<configuration>
|
|
<header>${project.basedir}/src/main/resources/license-header.txt</header>
|
|
<!--排除文件-->
|
|
<excludes>
|
|
<exclude>**/*.properties</exclude>
|
|
<exclude>*.sh</exclude>
|
|
<exclude>*.yml</exclude>
|
|
<exclude>.editorconfig</exclude>
|
|
<exclude>.gitignore</exclude>
|
|
<exclude>**/*.md</exclude>
|
|
<exclude>**/*.xml</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |