-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a parent pom, move maven central related settings to parent pom.
- Loading branch information
Showing
3 changed files
with
118 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
.idea | ||
alf_data_dev | ||
target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
<?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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.metaversant</groupId> | ||
<artifactId>share-site-space-templates</artifactId> | ||
<version>1.1.2-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>Share Site Space Templates</name> | ||
<description>Like folder templates for Alfresco Share sites.</description> | ||
<url>https://github.com/jpotts/share-site-space-templates</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>The Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Jeff Potts</name> | ||
<email>[email protected]</email> | ||
<organization>Metaversant Group, Inc.</organization> | ||
<organizationUrl>http://www.metaversant.com</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/jpotts/share-site-space-templates.git</connection> | ||
<developerConnection>scm:git:ssh://github.com:jpotts/share-site-space-templates.git</developerConnection> | ||
<url>http://github.com/jpotts/share-site-space-templates/tree/master</url> | ||
</scm> | ||
|
||
<parent> | ||
<groupId>org.alfresco.maven</groupId> | ||
<artifactId>alfresco-sdk-parent</artifactId> | ||
<version>2.2.0</version> | ||
</parent> | ||
|
||
<modules> | ||
<module>share-site-space-templates-repo</module> | ||
</modules> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<!-- This repository is only needed to retrieve Alfresco parent POM. NOTE: This can be removed when/if Alfresco will be on Maven Central --> | ||
<repositories> | ||
<repository> | ||
<id>alfresco-public</id> | ||
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url> | ||
</repository> | ||
<repository> | ||
<id>alfresco-public-snapshots</id> | ||
<url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
<updatePolicy>daily</updatePolicy> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.7</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.4</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-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> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,39 +4,15 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.metaversant</groupId> | ||
<artifactId>share-site-space-templates-repo</artifactId> | ||
<version>1.1.2-SNAPSHOT</version> | ||
<name>share-site-space-templates-repo AMP project</name> | ||
<url>https://github.com/jpotts/share-site-space-templates</url> | ||
|
||
<packaging>amp</packaging> | ||
<description>Manages the lifecycle of the share-site-space-templates-repo AMP (Alfresco Module Package)</description> | ||
|
||
<licenses> | ||
<license> | ||
<name>The Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Jeff Potts</name> | ||
<email>[email protected]</email> | ||
<organization>Metaversant Group, Inc.</organization> | ||
<organizationUrl>http://www.metaversant.com</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/jpotts/share-site-space-templates.git</connection> | ||
<developerConnection>scm:git:ssh://github.com:jpotts/share-site-space-templates.git</developerConnection> | ||
<url>http://github.com/jpotts/share-site-space-templates/tree/master</url> | ||
</scm> | ||
<name>share-site-space-templates-repo AMP project</name> | ||
<description>Manages the lifecycle of the share-site-space-templates-repo AMP (Alfresco Module Package)</description> | ||
|
||
<parent> | ||
<groupId>org.alfresco.maven</groupId> | ||
<artifactId>alfresco-sdk-parent</artifactId> | ||
<version>2.2.0</version> | ||
<groupId>com.metaversant</groupId> | ||
<artifactId>share-site-space-templates</artifactId> | ||
<version>1.1.2-SNAPSHOT</version> | ||
</parent> | ||
|
||
<!-- | ||
|