oss-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sakola</groupId> <artifactId>oss-parent</artifactId> <version>1</version> </dependency>
<!-- * Copyright (c) 2006-2018 The Sakola Foundation Original Pom Copyright (c) 2007-2011 Sonatype, Inc. All rights reserved. * Licensed under the Educational Community 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.opensource.org/licenses/ECL-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> <groupId>net.sakola</groupId> <artifactId>oss-parent</artifactId> <version>1</version> <packaging>pom</packaging> <name>Sakola Project OSS Parent</name> <description> Top level POM for the Sakola Open Source CLE - Used for Release/Metadata </description> <url>http://sakola.net</url> <organization> <name>Sakola Project</name> <url>http://sakola.net/</url> </organization> <inceptionYear>2003</inceptionYear> <developers> <developer> <id>sakola-core-team</id> <name>Sakola Core Team</name> <email>sakola-core-team@sakola.net</email> <url>http://sakola.net</url> <organization>Sakola</organization> <organizationUrl>http://sakola.net</organizationUrl> </developer> </developers> <issueManagement> <system>jira</system> <url>https://issues.sonatype.org/browse/SAK</url> </issueManagement> <ciManagement> <system>continuum</system> <notifiers> <notifier> <type>mail</type> <address>builds@collab.sakola.net</address> </notifier> </notifiers> </ciManagement> <mailingLists> <mailingList> <name>Sakola Developer List</name> <subscribe> http://collab.sakola.net/mailman/listinfo/sakola-dev </subscribe> <unsubscribe>sakola-dev-unsubscribe@collab.sakola.net</unsubscribe> <post>sakola-dev@collab.sakola.net</post> <archive> http://news.gmane.org/group/gmane.comp.cms.sakola.dev/last=/force_load=t </archive> </mailingList> <mailingList> <name>Sakola User List</name> <subscribe> http://collab.sakola.net/mailman/listinfo/sakola-user </subscribe> <unsubscribe>sakola-user-unsubscribe@collab.sakola.net</unsubscribe> <post>sakola-user@collab.sakola.net</post> <archive> http://news.gmane.org/group/gmane.comp.cms.sakola.user/last=/force_load=t </archive> </mailingList> <mailingList> <name>Sakola SCM List</name> <subscribe> http://collab.sakola.net/mailman/listinfo/source </subscribe> <unsubscribe>source-unsubscribe@collab.sakola.net</unsubscribe> <post>source@collab.sakola.net</post> </mailingList> </mailingLists> <licenses> <license> <name>Educational Community License, Version 2.0</name> <url>http://www.opensource.org/licenses/ecl2.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/sakolaproject/sakola</url> <connection>scm:git:git://github.com/sakolaproject/sakola.git</connection> <developerConnection> scm:git:ssh://git@github.com/sakolaproject/sakola.git </developerConnection> </scm> <repositories> <repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url> https://oss.sonatype.org/content/repositories/snapshots </url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>${sonatypeOssDistMgmtSnapshotsUrl}</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url> https://oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.2</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version> <message> Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. </message> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>-Psonatype-oss-release</arguments> </configuration> </plugin> </plugins> </pluginManagement> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sonatypeOssDistMgmtSnapshotsUrl> https://oss.sonatype.org/content/repositories/snapshots/ </sonatypeOssDistMgmtSnapshotsUrl> </properties> <profiles> <profile> <id>sonatype-oss-release</id> <build> <plugins> <plugin> <!-- https://github.com/sonatype/nexus-maven-plugins/tree/master/staging/maven-plugin --> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.2</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure> <skipStagingRepositoryClose>true</skipStagingRepositoryClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <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> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>