bytecoder-integrationtest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.mirkosertic.bytecoder</groupId> <artifactId>bytecoder-integrationtest</artifactId> <version>2018-11-29</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> <parent> <groupId>de.mirkosertic.bytecoder</groupId> <artifactId>bytecoder-parent</artifactId> <version>2018-11-29</version> </parent> <artifactId>bytecoder-integrationtest</artifactId> <packaging>war</packaging> <name>Bytecoder Integrationtest</name> <description>Bytecoder Integration Tests</description> <properties> <kotlin.version>1.3.10</kotlin.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>bytecoder-core</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jbox2d</groupId> <artifactId>jbox2d-library</artifactId> <version>2.2.1.1</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>kotlin-maven-plugin</artifactId> <groupId>org.jetbrains.kotlin</groupId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <goals> <goal>compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> <sourceDir>${project.basedir}/src/main/java</sourceDir> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <goals> <goal>test-compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> <sourceDir>${project.basedir}/src/test/java</sourceDir> </sourceDirs> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <executions> <!-- Replacing default-compile as it is treated specially by maven --> <execution> <id>default-compile</id> <phase>none</phase> </execution> <!-- Replacing default-testCompile as it is treated specially by maven --> <execution> <id>default-testCompile</id> <phase>none</phase> </execution> <execution> <id>java-compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>java-test-compile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>de.mirkosertic.bytecoder</groupId> <artifactId>bytecoder-mavenplugin</artifactId> <version>${project.version}</version> <configuration> <debugOutput>false</debugOutput> </configuration> <executions> <execution> <id>javascript</id> <goals> <goal>compile</goal> </goals> <configuration> <mainClass>de.mirkosertic.bytecoder.integrationtest.JBox2DSimulation</mainClass> <backend>js</backend> <optimizeWithGoogleClosure>true</optimizeWithGoogleClosure> <enableExceptionHandling>true</enableExceptionHandling> </configuration> </execution> <execution> <id>javascript-kotlin</id> <goals> <goal>compile</goal> </goals> <configuration> <mainClass>de.mirkosertic.bytecoder.integrationtest.JBox2DSimulationKotlin</mainClass> <backend>js</backend> <enableExceptionHandling>true</enableExceptionHandling> <filenamePrefix>bytecoder-kotlin</filenamePrefix> </configuration> </execution> <execution> <id>wasm</id> <goals> <goal>compile</goal> </goals> <configuration> <mainClass>de.mirkosertic.bytecoder.integrationtest.JBox2DSimulation</mainClass> <backend>wasm</backend> <enableExceptionHandling>false</enableExceptionHandling> </configuration> </execution> <execution> <id>wasm-kotlin</id> <goals> <goal>compile</goal> </goals> <configuration> <mainClass>de.mirkosertic.bytecoder.integrationtest.JBox2DSimulationKotlin</mainClass> <backend>wasm</backend> <enableExceptionHandling>false</enableExceptionHandling> <filenamePrefix>bytecoder-kotlin</filenamePrefix> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <webResource> <directory>${project.build.directory}/bytecoder</directory> </webResource> </webResources> </configuration> </plugin> </plugins> </build> </project>