Skip to content

Commit

Permalink
started maven build
Browse files Browse the repository at this point in the history
  • Loading branch information
Lvcky-gg committed Dec 20, 2023
1 parent 97c4426 commit 17bff1c
Show file tree
Hide file tree
Showing 21 changed files with 48 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e44655959fb0382b
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":923267048035434823,"features":"[]","target":16291746725044359259,"profile":9251013656241001069,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/build_time-1a4ec5e037045756/dep-bin-build_time"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.

Large diffs are not rendered by default.

Binary file added build_time/target/debug/build_time
Binary file not shown.
1 change: 1 addition & 0 deletions build_time/target/debug/build_time.d
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/home/johnrodonnell/notOdd/notNotOdd/build_time/target/debug/build_time: /home/johnrodonnell/notOdd/notNotOdd/build_time/src/main.rs
Binary file not shown.
5 changes: 5 additions & 0 deletions build_time/target/debug/deps/build_time-1a4ec5e037045756.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/home/johnrodonnell/notOdd/notNotOdd/build_time/target/debug/deps/build_time-1a4ec5e037045756: src/main.rs

/home/johnrodonnell/notOdd/notNotOdd/build_time/target/debug/deps/build_time-1a4ec5e037045756.d: src/main.rs

src/main.rs:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
1 change: 1 addition & 0 deletions tests/tests/notes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mvn compiler:compiler
27 changes: 25 additions & 2 deletions tests/tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,33 @@
<version>1.0-SNAPSHOT</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<defaultGoal>install</defaultGoal>
<plugins>


<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down

0 comments on commit 17bff1c

Please sign in to comment.