archetype-core-persistence
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.apiaddicts.apitools.apigen</groupId>
<artifactId>archetype-core-persistence</artifactId>
<version>2.0.3</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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.apiaddicts.apitools.apigen</groupId>
<artifactId>apigen</artifactId>
<version>2.0.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>archetype-core-persistence</artifactId>
<name>archetype-core-persistence</name>
<version>2.0.3</version>
<url>https://github.com/apiaddicts/apigen</url>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPLV3+)</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>
<organization>
<name>Apiaddicts</name>
<url>https://apiaddicts.org</url>
</organization>
<scm>
<connection>scm:git:git://github.com/apiaddicts/apigen.git</connection>
<developerConnection>scm:git:ssh://github.com:apiaddicts/apigen.git</developerConnection>
<url>https://github.com/apiaddicts/apigen/tree/master</url>
</scm>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>