META-INF.maven.org.jboss.xnio.xnio-api.pom.xml Maven / Gradle / Ivy
<!-- ~ JBoss, Home of Professional Open Source ~ ~ Copyright 2014 Red Hat, Inc. and/or its affiliates. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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> <artifactId>xnio-api</artifactId> <packaging>jar</packaging> <name>XNIO API</name> <description>The API JAR of the XNIO project</description> <url>http://www.jboss.org/xnio</url> <properties> <skip.enforcer>false</skip.enforcer> <test.level>INFO</test.level> </properties> <parent> <groupId>org.jboss.xnio</groupId> <artifactId>xnio-all</artifactId> <version>3.8.1.Final</version> </parent> <dependencies> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <!-- Not part of the API, so set as "provided" --> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-processor</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.wildfly.common</groupId> <artifactId>wildfly-common</artifactId> </dependency> <dependency> <groupId>org.wildfly.client</groupId> <artifactId>wildfly-client-config</artifactId> </dependency> <dependency> <groupId>org.jboss.threads</groupId> <artifactId>jboss-threads</artifactId> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-junit4</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit</artifactId> <scope>test</scope> <exclusions> <exclusion> <artifactId>testng</artifactId> <groupId>org.testng</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-install</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.jboss.bridger</groupId> <artifactId>bridger</artifactId> <version>${version.bridger.plugin}</version> <executions> <!-- run after "compile", runs bridger on main classes --> <execution> <id>weave</id> <phase>process-classes</phase> <goals> <goal>transform</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> <exclude>java/**</exclude> </excludes> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${version.surefire.plugin}</version> <configuration> <systemProperties> <property> <name>java.util.logging.manager</name> <value>org.jboss.logmanager.LogManager</value> </property> <property> <name>test.level</name> <value>${test.level}</value> </property> <property> <name>org.xnio.ssl.new</name> <value>${org.xnio.ssl.new}</value> </property> </systemProperties> <includes> <include>**/*TestCase.java</include> </includes> <enableAssertions>true</enableAssertions> <redirectTestOutputToFile>true</redirectTestOutputToFile> <argLine>-Djdk.attach.allowAttachSelf</argLine> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> <doctitle><![CDATA[XNIO API ]]>${project.version}</doctitle> <header><![CDATA[XNIO API ]]>${project.version}</header> <footer><![CDATA[XNIO API ]]>${project.version}</footer> <bottom><![CDATA[<i>Copyright © 2017 JBoss, a division of Red Hat, Inc.</i>]]></bottom> <links> <link>https://docs.oracle.com/javase/8/docs/api/</link> </links> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Main-Class>org.xnio.Version</Main-Class> <Jar-Version>${project.version}</Jar-Version> <Jar-Name>${project.artifactId}</Jar-Name> <Export-Package> !*._private, org.xnio*;version=${project.version} </Export-Package> <Import-Package> sun.misc*;resolution:=optional, * </Import-Package> <Require-Capability> osgi.service;effective:=active;filter:="(objectClass=org.xnio.Xnio)" </Require-Capability> </instructions> </configuration> <executions> <execution> <id>manifest</id> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>