[Jrisk-cvs] SF.net SVN: jrisk-code:[1075] Grasshopper
Brought to you by:
yuranet
|
From: <yu...@us...> - 2025-10-08 20:37:48
|
Revision: 1075
http://sourceforge.net/p/jrisk/code/1075
Author: yuranet
Date: 2025-10-08 20:37:45 +0000 (Wed, 08 Oct 2025)
Log Message:
-----------
upload to maven central works
Modified Paths:
--------------
Grasshopper/build.xml
Added Paths:
-----------
Grasshopper/pom.xml
Modified: Grasshopper/build.xml
===================================================================
--- Grasshopper/build.xml 2025-10-08 17:15:15 UTC (rev 1074)
+++ Grasshopper/build.xml 2025-10-08 20:37:45 UTC (rev 1075)
@@ -204,7 +204,7 @@
<!-- desktop.dist.jar is not needed as we already have ${dist.jar} -->
- <property name="desktop.sources.zip" value="${dist.dir}/${pom.project.artifactId}-${pom.project.version}-desktop-sources.zip"/>
+ <property name="desktop.sources.zip" value="${dist.dir}/${pom.project.artifactId}-${pom.project.version}-sources.zip"/>
<property name="ios.dist.jar" value="bin/GrasshopperiOS.jar"/>
<property name="ios.sources.zip" value="${dist.dir}/${pom.project.artifactId}-${pom.project.version}-ios-sources.zip"/>
<property name="android.dist.jar" value="bin/classes.jar"/>
@@ -263,8 +263,8 @@
<copy file="${javadoc.zip}" tofile="${bundle.dir}/${pom.project.artifactId}-${pom.project.version}-javadoc.jar"/>
<!-- copy all maven classifier artifacts -->
- <copy file="${dist.jar}" tofile="${bundle.dir}/${pom.project.artifactId}-${pom.project.version}-desktop.jar"/>
- <copy file="${desktop.sources.zip}" tofile="${bundle.dir}/${pom.project.artifactId}-${pom.project.version}-desktop-sources.jar"/>
+ <copy file="${dist.jar}" tofile="${bundle.dir}/${pom.project.artifactId}-${pom.project.version}.jar"/>
+ <copy file="${desktop.sources.zip}" tofile="${bundle.dir}/${pom.project.artifactId}-${pom.project.version}-sources.jar"/>
<copy file="${ios.dist.jar}" tofile="${bundle.dir}/${pom.project.artifactId}-${pom.project.version}-ios.jar"/>
<copy file="${ios.sources.zip}" tofile="${bundle.dir}/${pom.project.artifactId}-${pom.project.version}-ios-sources.jar"/>
<copy file="${android.dist.jar}" tofile="${bundle.dir}/${pom.project.artifactId}-${pom.project.version}-android.jar"/>
Added: Grasshopper/pom.xml
===================================================================
--- Grasshopper/pom.xml (rev 0)
+++ Grasshopper/pom.xml 2025-10-08 20:37:45 UTC (rev 1075)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>net.yura</groupId>
+ <artifactId>grasshopper</artifactId>
+ <version>2.19</version>
+ <packaging>jar</packaging>
+
+ <name>yura.net Grasshopper Library</name>
+ <description>
+ Crash reports including everything that happened with screenshots from any device, Desktop/iOS-MOE/Android.
+ </description>
+ <url>http://yura.net/grasshopper.shtml</url>
+
+ <licenses>
+ <license>
+ <name>LGPL 3.0</name>
+ <url>https://www.gnu.org/licenses/lgpl-3.0.html</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpcore</artifactId>
+ <version>4.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <version>4.1.2</version>
+ </dependency>
+ </dependencies>
+
+ <scm>
+ <connection>scm:svn:https://svn.code.sf.net/p/jrisk/code/Grasshopper</connection>
+ <developerConnection>scm:svn:https://svn.code.sf.net/p/jrisk/code/Grasshopper</developerConnection>
+ <url>https://sourceforge.net/p/jrisk/code/HEAD/tree/Grasshopper/</url>
+ </scm>
+
+ <developers>
+ <developer>
+ <name>Yura</name>
+ <organization>yura.net</organization>
+ <organizationUrl>http://yura.net/</organizationUrl>
+ </developer>
+ </developers>
+
+</project>
|