加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 5.93 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-project</artifactId>
<name>SoapUI project</name>
<version>5.4.0</version>
<packaging>pom</packaging>
<repositories>
<repository>
<id>smartbear-sweden-repository</id>
<url>http://www.soapui.org/repository/maven2</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Custom properties -->
<assembly.build.directory>${project.build.directory}/assemblies</assembly.build.directory>
<installer.build.directory>${project.build.directory}/install4j</installer.build.directory>
<build.date>${maven.build.timestamp}</build.date>
<project.name.full>SoapUI-${project.version}</project.name.full>
<project.name.visible>SoapUI</project.name.visible>
<project.src.artifactId>soapui</project.src.artifactId>
<javafx.version>2.2</javafx.version>
<!-- Set this property to the location of your JavaFX runtime jar if you want to compile with Java 6 -->
<javafx.runtime.lib.jar>${java.home}/lib/jfxrt.jar</javafx.runtime.lib.jar>
</properties>
<modules>
<module>soapui</module>
<module>soapui-maven-plugin</module>
<module>soapui-installer</module>
<module>soapui-maven-plugin-tester</module>
<module>soapui-system-test</module>
<module>soapui-testserver-api</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<configuration>
<filesets>
<fileset>
<directory>${project.basedir}</directory>
<includes>
<include>*.log</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.0.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
<execution>
<id>enforce-bytecode-version</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<!-- http://mojo.codehaus.org/extra-enforcer-rules/enforceBytecodeVersion.html -->
<enforceBytecodeVersion>
<maxJdkVersion>1.8</maxJdkVersion>
</enforceBytecodeVersion>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
<version>1.0-beta-2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.15</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<!-- currently, we cannot use java16 1.1 because some classes depends on the sun specific
implementation (com.sun.java.swing.plaf.windows) -->
<artifactId>java18</artifactId>
<version>1.0</version>
</signature>
<ignores>
<ignore>javafx.*</ignore>
<ignore>netscape.*</ignore>
</ignores>
</configuration>
<executions>
<execution>
<id>animal-sniffer-check</id>
<phase>process-classes</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化