81 lines
2.7 KiB
XML
81 lines
2.7 KiB
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>beedk-ate-springboot-test</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>com.inteligr8.ootbee</groupId>
|
|
<artifactId>beedk-parent</artifactId>
|
|
<version>1.1-SNAPSHOT</version>
|
|
<relativePath>..</relativePath>
|
|
</parent>
|
|
|
|
<name>Order of the Bee Development Kit: ATE Spring Boot Test</name>
|
|
<url>https://git.inteligr8.com/inteligr8/ootbee-beedk</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007</name>
|
|
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://git.inteligr8.com/inteligr8/ootbee-beedk.git</connection>
|
|
<developerConnection>scm:git:git@git.inteligr8.com:inteligr8/ootbee-beedk.git</developerConnection>
|
|
<url>https://git.inteligr8.com/inteligr8/ootbee-beedk</url>
|
|
</scm>
|
|
<organization>
|
|
<name>Order of the Bee</name>
|
|
<url>https://orderofthebee.net</url>
|
|
</organization>
|
|
<developers>
|
|
<developer>
|
|
<id>brian.long</id>
|
|
<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>
|
|
|
|
<properties>
|
|
<alfresco.transform-base.version>2.3.6</alfresco.transform-base.version>
|
|
<spring-boot.version>2.3.5.RELEASE</spring-boot.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-transformer-base</artifactId>
|
|
<version>${alfresco.transform-base.version}</version>
|
|
<classifier>tests</classifier>
|
|
<type>test-jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.vaadin.external.google</groupId>
|
|
<artifactId>android-json</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<!-- An Alfresco repository is required for the Alfresco dependency -->
|
|
<repository>
|
|
<id>alfresco-public</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|