jaxbjpa-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.javastro</groupId>
<artifactId>jaxbjpa-utils</artifactId>
<version>0.2.5</version>
</dependency><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>
<parent>
<artifactId>javastro-mavenbase</artifactId>
<groupId>org.javastro</groupId>
<version>2025.2</version>
<relativePath />
</parent>
<artifactId>jaxbjpa-utils</artifactId>
<version>0.2.5</version>
<name>jaxbjpa-utils</name>
<description>generic utilities to make using JAXB and JPA easier</description>
<dependencies>
<dependency>
<groupId>org.javastro.ivoa</groupId>
<artifactId>ivoa-schema</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
<dependency>
<groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>ex2</id> <!--create test jar as an extra -->
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<classifier>test</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>