Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
nervose.wu committed Jan 12, 2024
1 parent 50639ac commit 3149eb3
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?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>com.nervose</groupId>
<artifactId>firsttrial</artifactId>
<version>1.0.0.RELEASE</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>


</project>
7 changes: 7 additions & 0 deletions src/main/java/com/nervose/HelloWorld.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.nervose;

public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world");
}
}

0 comments on commit 3149eb3

Please sign in to comment.