archetypes
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.attivio.platform</groupId> <artifactId>archetypes</artifactId> <version>5.6.3.0</version> </dependency>
<?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.attivio.platform</groupId> <artifactId>archetypes</artifactId> <version>5.6.3.0</version> <name>platform/archetypes</name> <packaging>pom</packaging> <description>Parent POM for Attivio SDK Maven Archetypes</description> <url>https://github.com/attivio/archetypes</url> <repositories> <repository> <id>bintray-attivio-development</id> <url>${maven.url.repo}/development</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> </repository> <repository> <id>bintray-attivio-platform</id> <url>${maven.url.repo}/platform</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Martin Serrano</name> <email>martin@attivio.com</email> <organization>Attivio</organization> <organizationUrl>http://www.attivio.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:attivio/archetypes.git</connection> <developerConnection>scm:git:git@github.com:attivio/archetypes.git</developerConnection> <url>https://github.com/attivio/archetypes</url> <tag>HEAD</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <attivio.version>5.6.3.0</attivio.version> <maven.url.repo>https://attivio.bintray.com</maven.url.repo> <maven.url.distRepo>https://api.bintray.com/maven/attivio</maven.url.distRepo> </properties> <modules> <module>attivio-archetype-module</module> </modules> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.0.0</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-archetype-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <groupId>com.e-gineering</groupId> <artifactId>gitflow-helper-maven-plugin</artifactId> <version>2.2.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.e-gineering</groupId> <artifactId>gitflow-helper-maven-plugin</artifactId> <configuration> <masterBranchProperties> <maven_repo_id>bintray-attivio-platform</maven_repo_id> <maven_repo_url>${maven.url.repo}/platform</maven_repo_url> <maven_repo_snapshots_enabled>false</maven_repo_snapshots_enabled> <maven_repo_releases_enabled>true</maven_repo_releases_enabled> </masterBranchProperties> <developmentBranchProperties> <maven_repo_id>bintray-attivio-development</maven_repo_id> <maven_repo_url>${maven.url.repo}/development</maven_repo_url> <maven_repo_snapshots_enabled>true</maven_repo_snapshots_enabled> <maven_repo_releases_enabled>false</maven_repo_releases_enabled> </developmentBranchProperties> <releaseBranchProperties> <maven_repo_id>bintray-attivio-platform</maven_repo_id> <maven_repo_url>${maven.url.repo}/platform</maven_repo_url> <maven_repo_snapshots_enabled>false</maven_repo_snapshots_enabled> <maven_repo_releases_enabled>true</maven_repo_releases_enabled> </releaseBranchProperties> <snapshotDeploymentRepository> <![CDATA[bintray-attivio-development::default::${maven.url.distRepo}/development/archetypes/;publish=1::true]]> </snapshotDeploymentRepository> <stageDeploymentRepository> <![CDATA[bintray-attivio-development::default::${maven.url.distRepo}/development/archetypes/;publish=1::true]]> </stageDeploymentRepository> <releaseDeploymentRepository> <![CDATA[bintray-attivio-platform::default::${maven.url.distRepo}/platform/archetypes/;publish=1::false]]> </releaseDeploymentRepository> </configuration> <executions> <execution> <goals> <goal>set-properties</goal> <goal>retarget-deploy</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>