Skip to content

Commit

Permalink
Merge pull request #744 from henrypinkard/refactor_zmq
Browse files Browse the repository at this point in the history
fix maven auto build bug
  • Loading branch information
henrypinkard authored Apr 2, 2024
2 parents e82718e + 6c7a925 commit 132e623
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
20 changes: 14 additions & 6 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,17 +122,25 @@
</executions>
</plugin>

<plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<dependencies>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.15</version> <!-- apparently this needs to be exactly this version -->
</dependency>
</dependencies>
</plugin>

</plugins>
</build>

Expand Down
2 changes: 1 addition & 1 deletion pycromanager/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 30, 0)
version_info = (0, 30, 1)
__version__ = ".".join(map(str, version_info))

0 comments on commit 132e623

Please sign in to comment.