evolver-script-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fi.evolver</groupId> <artifactId>evolver-script-java</artifactId> <version>0.1.0-beta1</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <artifactId>evolver-script-java</artifactId> <version>0.1.0-beta1</version> <packaging>jar</packaging> <name>evolver-script-java</name> <description>Evolver utility classes for Java scripts</description> <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <organization> <name>Evolver Business Solutions Oy</name> <url>https://evolver.fi/</url> </organization> <parent> <groupId>fi.evolver</groupId> <artifactId>evolver-base</artifactId> <version>3.1.1</version> <relativePath /> </parent> <scm> <url>https://github.com/Avarko/${project.artifactId}</url> <connection>scm:git:git@github.com:Avarko/${project.artifactId}</connection> <tag>v0.1.0-beta1</tag> </scm> <properties> <maven.compiler.release>21</maven.compiler.release> <java.version>21</java.version> </properties> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/releases</url> </repository> </distributionManagement> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.12.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.12.1</version> </dependency> <dependency> <groupId>com.googlecode.lanterna</groupId> <artifactId>lanterna</artifactId> <version>3.1.2</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.github.git-commit-id</groupId> <artifactId>git-commit-id-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </project>