
abrial.javax-security-cdi-extension.1.0.0.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javax-security-cdi-extension Show documentation
Show all versions of javax-security-cdi-extension Show documentation
javax.security CDI Portable Extension
The newest version!
<?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.github.exabrial</groupId> <artifactId>javax-security-cdi-extension</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <description>javax.security CDI Portable Extension</description> <name>${project.artifactId}</name> <url>https://github.com/exabrial/${project.artifactId}</url> <scm> <connection>scm:git:ssh://[email protected]/exabrial/${project.artifactId}.git</connection> <developerConnection>scm:git:ssh://[email protected]/exabrial/${project.artifactId}.git</developerConnection> <url>https://github.com/exabrial/${project.artifactId}/tree/master</url> <tag>javax-security-cdi-extension-1.0.0</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <gpg.skip>true</gpg.skip> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>exabrial</id> <name>Jonathan S. Fisher</name> <properties> <dev.pgp.fingerprint>871638A21A7F2C38066471420306A354336B4F0D</dev.pgp.fingerprint> </properties> </developer> </developers> <dependencies> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>7.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.deltaspike.core</groupId> <artifactId>deltaspike-core-api</artifactId> <version>1.8.2</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>source-package</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> <includePom>true</includePom> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>gpg-sign</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>871638A21A7F2C38066471420306A354336B4F0D</keyname> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerArguments> <parameters /> </compilerArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <pluginRepositories> <pluginRepository> <id>central</id> <name>Central Repository</name> <releases> <checksumPolicy>fail</checksumPolicy> </releases> <url>https://repo.maven.apache.org/maven2</url> </pluginRepository> </pluginRepositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>sign</id> <properties> <gpg.skip>false</gpg.skip> </properties> </profile> </profiles> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy