| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>de.tototec</groupId>
<artifactId>de.tobiasroeser.lambdatest</artifactId>
<version>0.7.0</version>
<name>LambdaTest</name>
<description>Lambda-enabled functional testing on top of JUnit and TestNG</description>
<url>https://github.com/lefou/LambdaTest</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Tobias Roeser</name>
<email>le.petit.fou@web.de</email>
</developer>
</developers>
<scm>
<url>https://github.com/lefou/LambdaTest</url>
</scm>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.11</version>
<scope>provided</scope>
<optional>false</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>provided</scope>
<optional>false</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<scope>provided</scope>
<optional>false</optional>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<scope>test</scope>
<optional>false</optional>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<filtering>false</filtering>
<directory>src/main/resources</directory>
</resource>
<resource>
<filtering>false</filtering>
<directory>.</directory>
<includes>
<include>LICENSE.txt</include>
<include>README.adoc</include>
</includes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<extensions>false</extensions>
<inherited>true</inherited>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.16</version>
<extensions>false</extensions>
<executions>
<execution>
<id>check-java17-signature</id>
<phase>process-classes</phase>
<goals>
<goal>check</goal>
</goals>
<inherited>true</inherited>
</execution>
</executions>
<inherited>true</inherited>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java17</artifactId>
<version>1.0</version>
</signature>
</configuration>
</plugin>
<plugin>
<groupId>net.orfjackal.retrolambda</groupId>
<artifactId>retrolambda-maven-plugin</artifactId>
<version>1.8.0</version>
<extensions>false</extensions>
<executions>
<execution>
<id>process-java7-classes</id>
<goals>
<goal>process-main</goal>
</goals>
<inherited>true</inherited>
<configuration>
<target>1.7</target>
<mainOutputDir>${project.build.directory}/java7-classes</mainOutputDir>
</configuration>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.3.0</version>
<extensions>false</extensions>
<executions>
<execution>
<goals>
<goal>baseline</goal>
</goals>
<inherited>true</inherited>
<configuration>
<failOnError>false</failOnError>
</configuration>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<version>4.0.0</version>
<extensions>false</extensions>
<executions>
<execution>
<id>bnd-process-java8</id>
<goals>
<goal>bnd-process</goal>
</goals>
<inherited>true</inherited>
<configuration>
<classesDir>${project.build.outputDirectory}</classesDir>
<manifestPath>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestPath>
<bnd>
Bundle-Description: ${project.description}
Bundle-URL: ${project.url}
Implementation-Version: ${project.version}
Export-Package: de.tobiasroeser.lambdatest,de.tobiasroeser.lambdatest.generic,de.tobiasroeser.lambdatest.junit,de.tobiasroeser.lambdatest.testng,de.tobiasroeser.lambdatest.proxy
Import-Package: org.testng.*;version="6.8";resolution:=optional,org.junit.*;resolution:=optional,*;resolution:=optional
</bnd>
</configuration>
</execution>
<execution>
<id>bnd-process-java7</id>
<goals>
<goal>bnd-process</goal>
</goals>
<inherited>true</inherited>
<configuration>
<classesDir>${project.build.directory}/java7-classes</classesDir>
<manifestPath>${project.build.directory}/java7-classes/META-INF/MANIFEST.MF</manifestPath>
<bnd>
Bundle-Description: ${project.description}
Bundle-URL: ${project.url}
Implementation-Version: ${project.version}
Export-Package: de.tobiasroeser.lambdatest,de.tobiasroeser.lambdatest.generic,de.tobiasroeser.lambdatest.junit,de.tobiasroeser.lambdatest.testng,de.tobiasroeser.lambdatest.proxy
Import-Package: org.testng.*;version="6.8";resolution:=optional,org.junit.*;resolution:=optional,*;resolution:=optional
</bnd>
</configuration>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<extensions>false</extensions>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<inherited>true</inherited>
<configuration>
<classifier></classifier>
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</execution>
<execution>
<id>jar-java7</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<inherited>true</inherited>
<configuration>
<classifier>java7</classifier>
<classesDirectory>${project.build.directory}/java7-classes</classesDirectory>
<archive>
<manifestFile>${project.build.directory}/java7-classes/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<extensions>false</extensions>
<inherited>true</inherited>
<configuration>
<failOnError>false</failOnError>
<source>${maven.compiler.source}</source>
<doclet>org.asciidoctor.Asciidoclet</doclet>
<docletArtifact>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoclet</artifactId>
<version>1.5.4</version>
</docletArtifact>
<overview>README.adoc</overview>
<additionalparam>--base-dir "${project.basedir}"
--attribute "name=de.tobiasroeser.lambdatest"
--attribute "version=0.7.0"
--attribute "lambdatestversion=0.7.0"
--attribute "documentationversion=0.7.0"
--attribute "javasuffix=.html"
--attribute "title-link=https://github.com/lefou/LambdaTest[de.tobiasroeser.lambdatest 0.7.0]"
--attribute "env-asciidoclet=true"</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>io.github.zlika</groupId>
<artifactId>reproducible-build-maven-plugin</artifactId>
<version>0.7</version>
<extensions>false</extensions>
<executions>
<execution>
<goals>
<goal>strip-jar</goal>
</goals>
<inherited>true</inherited>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>gen-pom-xml</id>
<build>
<plugins>
<plugin>
<groupId>io.takari.polyglot</groupId>
<artifactId>polyglot-translate-plugin</artifactId>
<version>0.3.1</version>
<extensions>false</extensions>
<executions>
<execution>
<id>pom-scala-to-pom-xml</id>
<phase>initialize</phase>
<goals>
<goal>translate-project</goal>
</goals>
<inherited>true</inherited>
<configuration>
<input>pom.scala</input>
<output>pom.xml</output>
</configuration>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<extensions>false</extensions>
<inherited>true</inherited>
<configuration>
<filesets>
<fileset>
<directory>${basedir}</directory>
<includes>
<include>pom.xml</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|