
META-INF.maven.jakarta.enterprise.jakarta.enterprise.lang-model.pom.xml Maven / Gradle / Ivy
<!-- Copyright (c) 2021 Red Hat, Inc. and others This program and the accompanying materials are made available under the Apache Software License 2.0 which is available at: https://www.apache.org/licenses/LICENSE-2.0. SPDX-License-Identifier: Apache-2.0 --> <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.lang-model</artifactId> <packaging>jar</packaging> <name>CDI Language Model</name> <description>Build Compatible (Reflection-Free) Java Language Model for CDI</description> <licenses> <license> <name>Apache License 2.0</name> <url>https://apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <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> <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> <Export-Package> jakarta.enterprise.lang.model.*;version=4.1, </Export-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-javadoc-plugin</artifactId> <configuration> <docfilessubdirs>true</docfilessubdirs> <description>Jakarta CDI Language Model</description> <doctitle>Jakarta CDI Language Model</doctitle> <windowtitle>Jakarta CDI Language Model</windowtitle> <header><![CDATA[<br>Jakarta CDI Language Model ${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