groovy-script-executor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.awesome-java-web</groupId> <artifactId>groovy-script-executor</artifactId> <version>0.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>io.github.awesome-java-web</groupId> <artifactId>groovy-script-executor</artifactId> <version>0.2.0</version> <packaging>jar</packaging> <name>groovy-script-executor</name> <url>https://github.com/awesome-java-web/groovy-script-executor</url> <description>A simple groovy script executor for java (web) projects</description> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/license/mit</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>codeboyzhou</name> <email>imzhouchen@gmail.com</email> <organization>awesome-java-web</organization> <organizationUrl>https://github.com/awesome-java-web</organizationUrl> </developer> </developers> <scm> <url>https://github.com/awesome-java-web/groovy-script-executor</url> <connection>https://github.com/awesome-java-web/groovy-script-executor.git</connection> <developerConnection>scm:git:ssh://git@github.com:awesome-java-web/groovy-script-executor.git</developerConnection> </scm> <properties> <java.version>1.8</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!--======================== dependencies version management =======================--> <junit.version>5.9.0</junit.version> <groovy.version>4.0.6</groovy.version> <mockito.version>3.12.4</mockito.version> <guava.version>32.1.3-jre</guava.version> <caffeine.version>2.9.3</caffeine.version> <groovy-sandbox.version>1.19</groovy-sandbox.version> <spockframework.version>2.4-M1-groovy-4.0</spockframework.version> <!--============================ plugins version management ========================--> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <gmavenplus-plugin.version>3.0.2</gmavenplus-plugin.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <maven-surefire-plugin.version>3.2.3</maven-surefire-plugin.version> <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> </properties> <dependencies> <!-- groovy --> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy-all</artifactId> <version>${groovy.version}</version> <type>pom</type> </dependency> <dependency> <groupId>org.kohsuke</groupId> <artifactId>groovy-sandbox</artifactId> <version>${groovy-sandbox.version}</version> </dependency> <!-- local cache framework --> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>${caffeine.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> <scope>provided</scope> </dependency> <!--=========================== test scope ===========================--> <!-- spock framework for unit test --> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>${spockframework.version}</version> <scope>test</scope> </dependency> <!-- junit5 for maven-surefire-plugin to discover unit test class --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <!-- for static method mock --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- generate source code jar file --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- compile spock unit test code in groovy language --> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> <version>${gmavenplus-plugin.version}</version> <executions> <execution> <goals> <goal>compileTests</goal> </goals> </execution> </executions> </plugin> <!-- detect and run unit test --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <!-- generate javadoc jar file --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- jacoco for code coverage and unit test report --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <!-- At least 80% coverage is required --> <rule> <element>BUNDLE</element> <limits> <limit> <counter>LINE</counter> <value>COVEREDRATIO</value> <minimum>0.8</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <!-- nexus staging plugin for jar release --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- gpg plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> </project>