|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 1 | +<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"> |
3 | 2 | <modelVersion>4.0.0</modelVersion> |
4 | 3 |
|
5 | 4 | <groupId>com.onelogin</groupId> |
6 | 5 | <artifactId>java-saml-toolkit</artifactId> |
7 | 6 | <version>2.0.0-SNAPSHOT</version> |
8 | 7 | <packaging>pom</packaging> |
9 | | - <name>Onelogin java-saml Toolkit</name> |
| 8 | + |
| 9 | + <name>OneLogin java-saml Toolkit</name> |
| 10 | + <description>A Java SAML toolkit by OneLogin</description> |
| 11 | + <url>https://github.com/onelogin/java-saml</url> |
10 | 12 |
|
11 | 13 | <properties> |
12 | 14 | <slf4jVersion>1.7.12</slf4jVersion> |
|
60 | 62 | <target>1.7</target> |
61 | 63 | </configuration> |
62 | 64 | </plugin> |
| 65 | + <plugin> |
| 66 | + <groupId>org.apache.maven.plugins</groupId> |
| 67 | + <artifactId>maven-release-plugin</artifactId> |
| 68 | + <version>2.5</version> |
| 69 | + <configuration> |
| 70 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 71 | + <useReleaseProfile>false</useReleaseProfile> |
| 72 | + <releaseProfiles>release</releaseProfiles> |
| 73 | + <goals>deploy</goals> |
| 74 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
| 75 | + <arguments>-Prelease</arguments> |
| 76 | + </configuration> |
| 77 | + </plugin> |
63 | 78 | </plugins> |
64 | 79 | </pluginManagement> |
65 | 80 | </build> |
| 81 | + |
| 82 | + <distributionManagement> |
| 83 | + <repository> |
| 84 | + <id>sonatype-nexus-staging</id> |
| 85 | + <name>Nexus Release Repository</name> |
| 86 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 87 | + </repository> |
| 88 | + <snapshotRepository> |
| 89 | + <id>sonatype-nexus-snapshots</id> |
| 90 | + <name>Sonatype Nexus Snapshots</name> |
| 91 | + <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 92 | + </snapshotRepository> |
| 93 | + </distributionManagement> |
| 94 | + |
| 95 | + <scm> |
| 96 | + <connection>scm:git:git@github.com:onelogin/java-saml.git</connection> |
| 97 | + <developerConnection>scm:git:git@github.com:onelogin/java-saml.git</developerConnection> |
| 98 | + <url>https://github.com/onelogin/java-saml</url> |
| 99 | + <tag>HEAD</tag> |
| 100 | + </scm> |
| 101 | + |
| 102 | + <licenses> |
| 103 | + <license> |
| 104 | + <name>MIT License</name> |
| 105 | + <url>https://opensource.org/licenses/MIT</url> |
| 106 | + <distribution>repo</distribution> |
| 107 | + </license> |
| 108 | + </licenses> |
| 109 | + |
| 110 | + <developers> |
| 111 | + <developer> |
| 112 | + <name>Sixto Martín García</name> |
| 113 | + <url>https://github.com/pitbulk</url> |
| 114 | + <organization>OneLogin</organization> |
| 115 | + </developer> |
| 116 | + </developers> |
| 117 | + |
| 118 | + <profiles> |
| 119 | + <profile> |
| 120 | + <id>release</id> |
| 121 | + <build> |
| 122 | + <plugins> |
| 123 | + <plugin> |
| 124 | + <groupId>org.apache.maven.plugins</groupId> |
| 125 | + <artifactId>maven-source-plugin</artifactId> |
| 126 | + <version>2.2.1</version> |
| 127 | + <executions> |
| 128 | + <execution> |
| 129 | + <id>attach-sources</id> |
| 130 | + <goals> |
| 131 | + <goal>jar-no-fork</goal> |
| 132 | + </goals> |
| 133 | + </execution> |
| 134 | + </executions> |
| 135 | + </plugin> |
| 136 | + <plugin> |
| 137 | + <groupId>org.apache.maven.plugins</groupId> |
| 138 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 139 | + <version>2.9.1</version> |
| 140 | + <executions> |
| 141 | + <execution> |
| 142 | + <id>attach-javadocs</id> |
| 143 | + <goals> |
| 144 | + <goal>jar</goal> |
| 145 | + </goals> |
| 146 | + </execution> |
| 147 | + </executions> |
| 148 | + </plugin> |
| 149 | + <plugin> |
| 150 | + <groupId>org.apache.maven.plugins</groupId> |
| 151 | + <artifactId>maven-gpg-plugin</artifactId> |
| 152 | + <version>1.5</version> |
| 153 | + <executions> |
| 154 | + <execution> |
| 155 | + <id>sign-artifacts</id> |
| 156 | + <phase>verify</phase> |
| 157 | + <goals> |
| 158 | + <goal>sign</goal> |
| 159 | + </goals> |
| 160 | + </execution> |
| 161 | + </executions> |
| 162 | + </plugin> |
| 163 | + </plugins> |
| 164 | + </build> |
| 165 | + </profile> |
| 166 | + </profiles> |
| 167 | + |
66 | 168 | </project> |
0 commit comments