Skip to content

Commit

Permalink
pom.xml修正した
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoshiaki-Harada committed Oct 22, 2021
1 parent eed262b commit aded90e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
17 changes: 17 additions & 0 deletions e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@
<kotlin.version>1.5.0</kotlin.version>
<kluent.version>1.68</kluent.version>
</properties>
<repositories>
<repository>
<id>oss.sonatype.org-snapshot</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.thoughtworks.gauge</groupId>
Expand All @@ -32,6 +44,11 @@
<artifactId>kotlin-reflect</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>com.uzabase</groupId>
<artifactId>playtest-json</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>

<build>
Expand Down
16 changes: 9 additions & 7 deletions json-assert/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,34 +69,36 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>

<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>

<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmTarget>1.8</jvmTarget>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
</plugins>
</build>

</project>

0 comments on commit aded90e

Please sign in to comment.