mirror of
https://github.com/JHUAPL/Picante.git
synced 2026-01-07 22:13:58 -05:00
1 publish to maven central (#2)
* add BSP files for unit tests * add plugins to POM for Maven Central * update javadoc option * bump version to 1.0.0 --------- Co-authored-by: Hari Nair <hari@alumni.caltech.edu>
This commit is contained in:
81
pom.xml
81
pom.xml
@@ -1,9 +1,11 @@
|
||||
<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">
|
||||
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>
|
||||
|
||||
<groupId>edu.jhuapl.ses</groupId>
|
||||
<artifactId>picante</artifactId>
|
||||
<version>0.0.1</version>
|
||||
<version>1.0.0</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>picante</name>
|
||||
@@ -31,6 +33,13 @@
|
||||
<organization>JHUAPL</organization>
|
||||
<organizationUrl>https://www.jhuapl.edu/</organizationUrl>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>turnerfs</id>
|
||||
<name>F. Scott Turner</name>
|
||||
<email>Scott.Turner@jhuapl.edu</email>
|
||||
<organization>JHUAPL</organization>
|
||||
<organizationUrl>https://www.jhuapl.edu/</organizationUrl>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<scm>
|
||||
@@ -51,6 +60,8 @@
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
@@ -66,7 +77,7 @@
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>3.4.0</version>
|
||||
<version>3.4.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
@@ -104,6 +115,58 @@
|
||||
<testFailureIgnore>true</testFailureIgnore>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>3.6.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
<configuration> <!-- add this to disable checking -->
|
||||
<additionalOptions>-Xdoclint:none</additionalOptions>
|
||||
<failOnError>false</failOnError>
|
||||
<failOnWarnings>false</failOnWarnings>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<gpgArguments>
|
||||
<arg>--pinentry-mode</arg>
|
||||
<arg>loopback</arg>
|
||||
</gpgArguments>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.sonatype.plugins</groupId>
|
||||
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||||
<version>1.6.13</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<serverId>ossrh</serverId>
|
||||
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
||||
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
||||
@@ -123,6 +186,18 @@
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.sonatype.plugins</groupId>
|
||||
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
|
||||
BIN
src/test/resources/picante/mechanics/providers/aberrated/lt.bsp
Normal file
BIN
src/test/resources/picante/mechanics/providers/aberrated/lt.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/mechanics/providers/aberrated/sat.bsp
Normal file
BIN
src/test/resources/picante/mechanics/providers/aberrated/sat.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/adapters/combined.bsp
Normal file
BIN
src/test/resources/picante/spice/adapters/combined.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/daf/content/comment.bsp
Normal file
BIN
src/test/resources/picante/spice/daf/content/comment.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/daf/content/empty.bsp
Normal file
BIN
src/test/resources/picante/spice/daf/content/empty.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/daf/content/invalid.bsp
Normal file
BIN
src/test/resources/picante/spice/daf/content/invalid.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/combined.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/combined.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/combined.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/combined.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/invalidID.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/invalidID.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type1.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type1.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type12_5d.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type12_5d.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type13_5d.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type13_5d.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type17.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type17.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type2.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type2.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type3.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type3.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type5.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type5.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type8_4d.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type8_4d.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type8_5d.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type8_5d.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type9_4d.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type9_4d.bsp
Normal file
Binary file not shown.
BIN
src/test/resources/picante/spice/kernel/spk/type9_5d.bsp
Normal file
BIN
src/test/resources/picante/spice/kernel/spk/type9_5d.bsp
Normal file
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user