Skip to content

Commit

Permalink
Release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xylix committed Dec 3, 2019
1 parent 9c29b8e commit d864d46
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 8 deletions.
32 changes: 26 additions & 6 deletions kaantelypeli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>kaantelypeli</groupId>
<artifactId>kaantelypeli</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.organization>xylix-github</sonar.organization>
<sonar.projectKey>xylix_ot-harjoitustyo2019</sonar.projectKey>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.organization>xylix-github</sonar.organization>
<sonar.projectKey>xylix_ot-harjoitustyo2019</sonar.projectKey>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -59,6 +59,26 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>kaantelypeli.ui.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
Expand All @@ -74,11 +94,11 @@
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.3</version>
<configuration>
<mainClass>kaantelypeli.ui.Game</mainClass>
</configuration>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
11 changes: 11 additions & 0 deletions kaantelypeli/src/main/java/kaantelypeli/ui/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package kaantelypeli.ui;

/**
*
* @author xylix
*/
public class Main {
public static void main(String[] args) {
kaantelypeli.ui.Game.main(args);
}
}
4 changes: 2 additions & 2 deletions tuntikirjanpito.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
| 27.11. | 0.5 | Palikkatyyppien avain- ja ovi lisäämisen aloitus |
| 28.11. | 1 | Koodin laadun korjailua ja refaktorointia |
| 2.12. | 3 | Laadun korjailua, collision testi. Avainta ja avainreikää käyttävä kartta 2 |
| 3.12. | 2 | JavaFX paketointi, release 0.0.1 |
| | | |
| | | |
----summa: 20
----summa: 22

0 comments on commit d864d46

Please sign in to comment.