nucleus-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>gov.nasa.pds</groupId> <artifactId>nucleus-tools</artifactId> <version>0.0.26</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/maven-v4_0_0.xsd"> <parent> <artifactId>pds</artifactId> <groupId>gov.nasa</groupId> <version>1.18.0</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>gov.nasa.pds</groupId> <artifactId>nucleus-tools</artifactId> <name>${project.groupId}:${project-name}</name> <version>0.0.26</version> <description>Java utilies used by PDS Nucleus</description> <url>https://nasa-pds.github.io/nucleus-tools.java</url> <issueManagement> <system>GitHub</system> <url>https://github.com/NASA-PDS/nucleus-tools.java/issues</url> </issueManagement> <inceptionYear>2025</inceptionYear> <scm> <connection>scm:git:https://github.com/NASA-PDS/nucleus-tools.java.git</connection> <developerConnection>scm:git:ssh://github.com/NASA-PDS/nucleus-tools.java.git</developerConnection> <tag>main</tag> <url>https://nasa-pds.github.io/nucleus-tools.java</url> </scm> <organization /> <build> <resources> <resource> <targetPath>gov/nasa/pds/mypackage</targetPath> <filtering>true</filtering> <directory>${basedir}/src/main/resources</directory> <includes> <include>example.properties</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Main-Class>gov.nasa.pds.nucleus.ingress.PDSNucleusS3BackLogProcessor</Main-Class> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <id>assemble-all</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>gov.nasa.pds.nucleus.ingress.PDSNucleusS3BackLogProcessor</mainClass> <addClasspath>true</addClasspath> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> <configuration> <revisionOnScmFailure>unknownbuild</revisionOnScmFailure> <format>{0,date,yyyy-MM-dd HH:mm:ss}</format> <items> <item>timestamp</item> </items> <doCheck>false</doCheck> <doUpdate>false</doUpdate> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>4.0.0-M13</version> <configuration> <skip>false</skip> <skipDeploy>false</skipDeploy> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>make-source-jar</id> <phase>prepare-package</phase> <goals> <goal>jar-no-fork</goal> <goal>test-jar-no-fork</goal> </goals> <configuration> <excludeResources>true</excludeResources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.11.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> </dependencies> <reporting /> <distributionManagement /> <properties> <project-name>nucleus-tools.java</project-name> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.source>17</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>