Sleds/classification-ux/jsonschema2pojo-jpa-annotator/pom.xml

56 lines
1.6 KiB
XML
Raw Normal View History

2025-03-13 21:28:38 +00:00
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.edocsol</groupId>
<artifactId>classification-ux-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>com.edocsol</groupId>
<artifactId>jsonschema2pojo-jpa-annotator</artifactId>
<packaging>jar</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>JPA annotator for jsonschema2pojo</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<repository>
<id>eds release</id>
<name>Internal Releases</name>
<url>http://10.10.10.233:8081/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>eds snapshot</id>
<name>Internal Snapshots</name>
<url>http://10.10.10.233:8081/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<!-- jsonschema2pojo core -->
<dependency>
<groupId>org.jsonschema2pojo</groupId>
<artifactId>jsonschema2pojo-core</artifactId>
<version>0.4.15</version>
</dependency>
<!-- JPA annotations -->
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.1.Final</version>
</dependency>
</dependencies>
</project>