<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>com.l2jserver</groupId> <artifactId>l2j-server-script-engine</artifactId> <version>1.0.0-SNAPSHOT</version> <name>L2J Server - Script Engine</name> <inceptionYear>2018</inceptionYear> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>10</maven.compiler.source> <maven.compiler.target>10</maven.compiler.target> <InMemoryJavaCompiler.version>1.3.0</InMemoryJavaCompiler.version> <slf4j.version>1.7.25</slf4j.version> <testng.version>6.14.3</testng.version> <!-- Plugins --> <maven-source-plugin.version>3.0.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <jgitflow-maven-plugin.version>1.0-m5.1</jgitflow-maven-plugin.version> </properties> <developers> <developer> <id>Zoey76</id> </developer> </developers> <dependencies> <dependency> <groupId>org.mdkt.compiler</groupId> <artifactId>InMemoryJavaCompiler</artifactId> <version>${InMemoryJavaCompiler.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.apache-extras.beanshell</groupId> <artifactId>bsh</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <additionalJOption>-html5</additionalJOption> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <groupId>external.atlassian.jgitflow</groupId> <artifactId>jgitflow-maven-plugin</artifactId> <version>${jgitflow-maven-plugin.version}</version> <configuration> <noDeploy>true</noDeploy> </configuration> </plugin> </plugins> </build> </project>