File pom.xml
Last commit: Sun May 31 01:35:25 2026 +0200 Jan Dankert [maven-release-plugin] prepare for next development iteration
1 <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/xsd/maven-4.0.0.xsd"> 2 <modelVersion>4.0.0</modelVersion> 3 4 <groupId>de.jandankert.jscriptbox</groupId> 5 <artifactId>jscriptbox</artifactId> 6 <version>1.0.1-SNAPSHOT</version> 7 <packaging>jar</packaging> 8 9 <name>jscriptbox</name> 10 <url>https://github.com/dankert/jscriptbox</url> 11 <description>Scripting Sandbox for Java</description> 12 <licenses> 13 <license> 14 <name>LGPL-3.0-or-later</name> 15 <comments>GNU Lesser General Public License v3.0 or later</comments> 16 <distribution>repo</distribution> 17 </license> 18 </licenses> 19 <developers> 20 <developer> 21 <name>Jan Dankert</name> 22 <url>http://www.jandankert.de</url> 23 <email>develop+jscriptbox@jandankert.de</email> 24 <timezone>Europe/Berlin</timezone> 25 </developer> 26 </developers> 27 <scm> 28 <connection>scm:git:git://github.com/dankert/jscriptbox.git</connection> 29 <developerConnection>scm:git:ssh://git@github.com/dankert/jscriptbox.git</developerConnection> 30 <url>http://github.com/dankert/jscriptbox/tree/master</url> 31 <tag>HEAD</tag> 32 </scm> 33 <distributionManagement> 34 <!-- 35 <snapshotRepository> 36 <id>ossrh</id> 37 <url>https://oss.sonatype.org/content/repositories/snapshots</url> 38 </snapshotRepository> 39 <repository> 40 <id>ossrh</id> 41 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> 42 </repository> 43 --> 44 </distributionManagement> 45 <properties> 46 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 47 <java.version>17</java.version> 48 </properties> 49 50 <build> 51 <sourceDirectory>${project.basedir}/src</sourceDirectory> 52 <testSourceDirectory>${project.basedir}/test</testSourceDirectory> 53 <plugins> 54 <plugin> 55 <groupId>org.apache.maven.plugins</groupId> 56 <artifactId>maven-compiler-plugin</artifactId> 57 <version>3.1</version> 58 <configuration> 59 <source>${java.version}</source> 60 <target>${java.version}</target> 61 </configuration> 62 </plugin> 63 <plugin> 64 <groupId>org.apache.maven.plugins</groupId> 65 <artifactId>maven-source-plugin</artifactId> 66 <version>2.2.1</version> 67 <executions> 68 <execution> 69 <id>attach-sources</id> 70 <goals> 71 <goal>jar-no-fork</goal> 72 </goals> 73 </execution> 74 </executions> 75 </plugin> 76 <plugin> 77 <groupId>org.apache.maven.plugins</groupId> 78 <artifactId>maven-javadoc-plugin</artifactId> 79 <version>2.9.1</version> 80 <configuration> 81 <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> 82 </configuration> 83 <executions> 84 <execution> 85 <id>attach-javadocs</id> 86 <goals> 87 <goal>jar</goal> 88 </goals> 89 </execution> 90 </executions> 91 </plugin> 92 <plugin> 93 <groupId>org.apache.maven.plugins</groupId> 94 <artifactId>maven-gpg-plugin</artifactId> 95 <version>1.5</version> 96 <executions> 97 <execution> 98 <id>sign-artifacts</id> 99 <phase>verify</phase> 100 <goals> 101 <goal>sign</goal> 102 </goals> 103 </execution> 104 </executions> 105 </plugin> 106 <plugin> 107 <groupId>org.sonatype.central</groupId> 108 <artifactId>central-publishing-maven-plugin</artifactId> 109 <version>0.9.0</version> 110 <extensions>true</extensions> 111 <configuration> 112 <publishingServerId>central</publishingServerId> 113 </configuration> 114 </plugin> 115 <plugin> 116 <groupId>org.apache.maven.plugins</groupId> 117 <artifactId>maven-release-plugin</artifactId> 118 <version>3.3.1</version> 119 </plugin> 120 </plugins> 121 </build> 122 <dependencies> 123 <dependency> 124 <groupId>junit</groupId> 125 <artifactId>junit</artifactId> 126 <version>4.13.1</version> 127 <scope>test</scope> 128 </dependency> 129 </dependencies> 130 </project>
Downloadpom.xml
History Sun, 31 May 2026 01:35:25 +0200 Jan Dankert [maven-release-plugin] prepare for next development iteration Sun, 31 May 2026 01:35:21 +0200 Jan Dankert [maven-release-plugin] prepare release jscriptbox-1.0.0 Sun, 31 May 2026 01:35:02 +0200 Jan Dankert Fix: add some project information. Sun, 31 May 2026 01:33:46 +0200 Jan Dankert [maven-release-plugin] rollback the release of jscriptbox-1.0.0 Sun, 31 May 2026 01:31:03 +0200 Jan Dankert [maven-release-plugin] prepare for next development iteration Sun, 31 May 2026 01:30:59 +0200 Jan Dankert [maven-release-plugin] prepare release jscriptbox-1.0.0 Sun, 31 May 2026 01:30:45 +0200 Jan Dankert Fix: SCM url for maven release plugin Sun, 31 May 2026 01:29:21 +0200 Jan Dankert [maven-release-plugin] rollback the release of jscriptbox-1.0.0 Sun, 31 May 2026 01:27:42 +0200 Jan Dankert [maven-release-plugin] prepare release jscriptbox-1.0.0 Sun, 31 May 2026 01:27:26 +0200 Jan Dankert Fix: SCM url for maven release plugin Sun, 31 May 2026 01:24:38 +0200 Jan Dankert [maven-release-plugin] rollback the release of jscriptbox-1.0.0 Sun, 31 May 2026 01:22:56 +0200 Jan Dankert [maven-release-plugin] prepare release jscriptbox-1.0.0 Sun, 31 May 2026 01:12:59 +0200 Jan Dankert [maven-release-plugin] prepare release jscriptbox-1.0.0 Sun, 31 May 2026 01:09:56 +0200 Jan Dankert Preparation for using the maven release plugin. Sun, 31 May 2026 00:02:44 +0200 Jan Dankert Fix: Using correct directories for maven. Sat, 30 May 2026 23:18:57 +0200 Jan Dankert Preparation for Uploading to Maven central. Wed, 15 Nov 2023 21:47:25 +0100 Jan Dankert JUnit without security issues. Sat, 28 Oct 2023 15:13:17 +0200 Jan Dankert All is complete, but the AST is broken at the moment.