45 lines
1.3 KiB
XML
45 lines
1.3 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>beedk-acs-platform-module-archetype</artifactId>
|
|
<packaging>maven-archetype</packaging>
|
|
|
|
<parent>
|
|
<groupId>com.inteligr8.ootbee</groupId>
|
|
<artifactId>beedk-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<relativePath>..</relativePath>
|
|
</parent>
|
|
|
|
<name>Order of the Bee Development Kit: Project Scaffolding for an ACS Platform Module</name>
|
|
<scm>
|
|
<url>https://bitbucket.org/inteligr8/ootbee-beedk</url>
|
|
</scm>
|
|
<organization>
|
|
<name>Order of the Bee</name>
|
|
<url>https://orderofthebee.net</url>
|
|
</organization>
|
|
<developers>
|
|
<developer>
|
|
<name>Brian Long</name>
|
|
<email>brian@inteligr8.com</email>
|
|
<organization>Inteligr8</organization>
|
|
<organizationUrl>https://www.inteligr8.com</organizationUrl>
|
|
<url>https://twitter.com/brianmlong</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<build>
|
|
<extensions>
|
|
<extension>
|
|
<groupId>org.apache.maven.archetype</groupId>
|
|
<artifactId>archetype-packaging</artifactId>
|
|
<version>3.1.1</version>
|
|
</extension>
|
|
</extensions>
|
|
</build>
|
|
</project>
|