USRE-138 先把 0.0.1 版本发布

This commit is contained in:
YuCheng Hu 2023-01-08 17:22:38 -05:00
parent 0a38a3e352
commit 6673c39fbc
No known key found for this signature in database
GPG Key ID: C395DC68EF030B59
5 changed files with 107 additions and 36 deletions

View File

@ -11,5 +11,8 @@
<module name="rets-io-client" /> <module name="rets-io-client" />
</profile> </profile>
</annotationProcessing> </annotationProcessing>
<bytecodeTargetLevel>
<module name="Rets-Io" target="11" />
</bytecodeTargetLevel>
</component> </component>
</project> </project>

View File

@ -7,15 +7,20 @@
<option name="url" value="https://repo.ossez.com/repository/maven-snapshots/" /> <option name="url" value="https://repo.ossez.com/repository/maven-snapshots/" />
</remote-repository> </remote-repository>
<remote-repository> <remote-repository>
<option name="id" value="central" /> <option name="id" value="ossrh-releases" />
<option name="name" value="Central Repository" /> <option name="name" value="ossrh Releases" />
<option name="url" value="https://repo.ossez.com/repository/maven-public/" /> <option name="url" value="https://oss.sonatype.org/service/local/staging/deploy/maven2/" />
</remote-repository> </remote-repository>
<remote-repository> <remote-repository>
<option name="id" value="ossez-repo-releases" /> <option name="id" value="ossez-repo-releases" />
<option name="name" value="OSSEZ Private Releases" /> <option name="name" value="OSSEZ Private Releases" />
<option name="url" value="https://repo.ossez.com/repository/maven-releases/" /> <option name="url" value="https://repo.ossez.com/repository/maven-releases/" />
</remote-repository> </remote-repository>
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Central Repository" />
<option name="url" value="https://repo.ossez.com/repository/maven-public/" />
</remote-repository>
<remote-repository> <remote-repository>
<option name="id" value="ossez-repo-snapshots" /> <option name="id" value="ossez-repo-snapshots" />
<option name="name" value="Repository for JDK 1.4 builds" /> <option name="name" value="Repository for JDK 1.4 builds" />

View File

@ -8,7 +8,7 @@
<parent> <parent>
<groupId>com.ossez.usreio</groupId> <groupId>com.ossez.usreio</groupId>
<artifactId>rets-io</artifactId> <artifactId>rets-io</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1</version>
</parent> </parent>
<name>Rets-Io-Client</name> <name>Rets-Io-Client</name>
@ -34,7 +34,7 @@
<dependency> <dependency>
<groupId>com.ossez.usreio</groupId> <groupId>com.ossez.usreio</groupId>
<artifactId>rets-io-common</artifactId> <artifactId>rets-io-common</artifactId>
<version>0.0.1</version> <version>0</version>
</dependency> </dependency>
<!-- LOG --> <!-- LOG -->
@ -107,6 +107,6 @@
<artifactId>commons-codec</artifactId> <artifactId>commons-codec</artifactId>
<version>1.3</version> <version>1.3</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -10,7 +10,7 @@
<parent> <parent>
<groupId>com.ossez.usreio</groupId> <groupId>com.ossez.usreio</groupId>
<artifactId>rets-io</artifactId> <artifactId>rets-io</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1</version>
</parent> </parent>
<name>Rets-Io-Common</name> <name>Rets-Io-Common</name>

121
pom.xml
View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.ossez.usreio</groupId> <groupId>com.ossez.usreio</groupId>
<artifactId>rets-io</artifactId> <artifactId>rets-io</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Rets-Io</name> <name>Rets-Io</name>
@ -33,8 +33,13 @@
</license> </license>
</licenses> </licenses>
<distributionManagement> <scm>
<connection>https://github.com/USRealEstate/rets-io.git</connection>
<developerConnection>scm:git:ssh://git@github.com/USRealEstate/rets-io.git</developerConnection>
<url>https://github.com/USRealEstate/rets-io</url>
</scm>
<distributionManagement>
</distributionManagement> </distributionManagement>
<modules> <modules>
@ -133,18 +138,6 @@
</resources> </resources>
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<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>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId>
@ -309,25 +302,95 @@
<artifactId>maven-makepkgs-plugin</artifactId> <artifactId>maven-makepkgs-plugin</artifactId>
<version>0.6.2</version> <version>0.6.2</version>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
<plugins> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<configuration>
<source>11</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>