
META-INF.maven.jakarta.enterprise.jakarta.enterprise.cdi-api.pom.xml Maven / Gradle / Ivy
<!-- ~ Copyright 2018, Red Hat, Inc., and individual contributors ~ ~ 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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-parent</artifactId> <version>4.1.0</version> </parent> <artifactId>jakarta.enterprise.cdi-api</artifactId> <packaging>jar</packaging> <name>CDI APIs</name> <description>APIs for CDI (Contexts and Dependency Injection for Java)</description> <url>http://cdi-spec.org</url> <licenses> <license> <name>Apache License 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>Jakarta CDI Issues</system> <url>https://github.com/jakarta/cdi/issues</url> </issueManagement> <inceptionYear>2008</inceptionYear> <developers> <developer> <name>Antoine Sabot-Durand</name> <id>asabotdu</id> <timezone>CET</timezone> <organization>Red Hat Inc.</organization> <roles> <role>Specfication Lead</role> </roles> <email>asd[at]redhat[dot]com</email> </developer> <developer> <name>Martin Kouba</name> <id>mkouba</id> <organization>Red Hat Inc.</organization> <roles> <role>RI tech lead</role> </roles> <email>mkouba[at]redhat[dot]com</email> </developer> <developer> <name>Tomas Remes</name> <id>tremes</id> <organization>Red Hat Inc.</organization> <roles> <role>TCK tech lead</role> </roles> <email>tremes[at]redhat[dot]com</email> </developer> <developer> <name>Mark Struberg</name> <id>mstruberg</id> <timezone>CET</timezone> <roles> <role>Implementation developer</role> </roles> <email>struberg[at]yahoo[dot]de</email> </developer> <developer> <name>John D. Ament</name> <id>johndament</id> <organization>Independent</organization> <timezone>EST</timezone> <roles> <role>EG Member</role> </roles> <email>johndament[at]apache[dot]org</email> </developer> <developer> <name>Matej Novotny</name> <id>manovotn</id> <organization>Red Hat Inc.</organization> <roles> <role>TCK and RI developer</role> </roles> <email>manovotn[at]redhat[dot]com</email> </developer> <developer> <name>Mark Paluch</name> <id>mp911de</id> <organization>Independent</organization> <timezone>CET</timezone> <roles> <role>EG Member</role> </roles> <email>mpaluch[at]paluch[dot]biz</email> </developer> </developers> <properties> <maven.build.timestamp.format>MMMM dd, yyyy</maven.build.timestamp.format> </properties> <!-- Configure all dependencies (e.g. testing) --> <dependencyManagement> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.9.0</version> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.lang-model</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>${annotation.api.version}</version> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> <version>${atinject.api.version}</version> </dependency> <dependency> <groupId>jakarta.el</groupId> <artifactId>jakarta.el-api</artifactId> <version>${uel.api.version}</version> </dependency> <dependency> <groupId>jakarta.interceptor</groupId> <artifactId>jakarta.interceptor-api</artifactId> <version>${interceptor.api.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.lang-model</artifactId> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> </dependency> <dependency> <groupId>jakarta.el</groupId> <artifactId>jakarta.el-api</artifactId> </dependency> <dependency> <groupId>jakarta.interceptor</groupId> <artifactId>jakarta.interceptor-api</artifactId> <exclusions> <exclusion> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:git:[email protected]:cdi-spec/cdi.git</connection> <url>scm:git:[email protected]:cdi-spec/cdi.git</url> <developerConnection>scm:git:[email protected]:cdi-spec/cdi.git</developerConnection> <tag>4.1.0</tag> </scm> <profiles> <profile> <id>jboss-public-repository</id> <activation> <property> <name>jboss-public-repository</name> <value>!false</value> </property> </activation> <repositories> <repository> <id>jboss-public-repository-group</id> <name>JBoss Public Maven Repository Group</name> <url>https://repository.jboss.org/nexus/content/groups/public</url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> <updatePolicy>never</updatePolicy> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>jboss-public-repository-group</id> <name>JBoss Public Maven Repository Group</name> <url>https://repository.jboss.org/nexus/content/groups/public</url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> <updatePolicy>never</updatePolicy> </snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles> <build> <resources> <resource> <directory>${project.basedir}/..</directory> <includes> <include>LICENSE.txt</include> <include>NOTICE.md</include> </includes> <targetPath>META-INF</targetPath> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <filtering>true</filtering> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <compilerArgs> <arg>-Xlint:all</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven-bundle-plugin.version}</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Automatic-Module-Name>jakarta.cdi</Automatic-Module-Name> <Export-Package> jakarta.decorator;version=4.1, jakarta.enterprise.*;version=4.1, </Export-Package> <Import-Package> jakarta.el;version=5.0, * </Import-Package> </instructions> </configuration> </plugin> <!-- Add the OSGi Manifest to the main jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <executions> <execution> <id>default-test</id> <configuration> <systemPropertyVariables> <serviceDir>${project.build.testOutputDirectory}/META-INF/services/</serviceDir> </systemPropertyVariables> <excludes> <exclude>**/privileged/**</exclude> </excludes> <useModulePath>false</useModulePath> </configuration> </execution> <execution> <id>privileged-test</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <systemPropertyVariables> <serviceDir>${project.build.testOutputDirectory}/META-INF/services/</serviceDir> </systemPropertyVariables> <includes> <include>**/privileged/**</include> </includes> <argLine>-Djava.security.manager -Djava.security.policy="${project.build.testOutputDirectory}/java.policy"</argLine> <forkCount>1</forkCount> <useModulePath>false</useModulePath> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> <executions> <execution> <id>filter-overview</id> <phase>generate-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <resources> <resource> <directory>src/main/javadoc</directory> <include>overview.html</include> <filtering>true</filtering> </resource> </resources> <outputDirectory>${project.build.directory}/javadoc</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <docfilessubdirs>true</docfilessubdirs> <description>Jakarta Contexts and Dependency Injection API</description> <doctitle>Jakarta Contexts and Dependency Injection API</doctitle> <detectJavaApiLink>false</detectJavaApiLink> <overview>${project.build.directory}/javadoc/overview.html</overview> <windowtitle>Jakarta Contexts and Dependency Injection API</windowtitle> <header><![CDATA[<br>Jakarta Contexts and Dependency Injection ${project.version}]]> </header> <bottom><![CDATA[ Comments to: <a href="mailto:[email protected]">[email protected]</a>.<br> Copyright © 2018,2023 Eclipse Foundation.<br> Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>.]]> </bottom> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy