Skip to content

Commit b748f1b

Browse files
Initial commit
0 parents  commit b748f1b

6 files changed

Lines changed: 99 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea/*
2+
*.iml
3+
target/*

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
os: linux
2+
arch:
3+
- ppc64le
4+
language: java
5+
jdk:
6+
- openjdk11
7+
script:
8+
- mvn clean install
9+
cache:
10+
directories:
11+
- $HOME/.m2

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# jv-homework-template

pom.xml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>mate-academy</groupId>
8+
<artifactId>diamond</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<jdk.version>11</jdk.version>
13+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
15+
<maven.checkstyle.plugin.version>3.1.1</maven.checkstyle.plugin.version>
16+
<maven.checkstyle.plugin.configLocation>
17+
https://raw.githubusercontent.com/mate-academy/style-guides/master/java/checkstyle.xml
18+
</maven.checkstyle.plugin.configLocation>
19+
</properties>
20+
21+
<dependencies>
22+
<dependency>
23+
<groupId>junit</groupId>
24+
<artifactId>junit</artifactId>
25+
<version>4.12</version>
26+
<scope>test</scope>
27+
</dependency>
28+
</dependencies>
29+
<build>
30+
<plugins>
31+
<plugin>
32+
<groupId>org.apache.maven.plugins</groupId>
33+
<artifactId>maven-checkstyle-plugin</artifactId>
34+
<version>3.1.1</version>
35+
<executions>
36+
<execution>
37+
<phase>compile</phase>
38+
<goals>
39+
<goal>check</goal>
40+
</goals>
41+
</execution>
42+
</executions>
43+
<configuration>
44+
<configLocation>${maven.checkstyle.plugin.configLocation}</configLocation>
45+
<encoding>UTF-8</encoding>
46+
<consoleOutput>true</consoleOutput>
47+
<failsOnError>true</failsOnError>
48+
<linkXRef>false</linkXRef>
49+
</configuration>
50+
</plugin>
51+
</plugins>
52+
<pluginManagement>
53+
<plugins>
54+
<plugin>
55+
<groupId>org.apache.maven.plugins</groupId>
56+
<artifactId>maven-compiler-plugin</artifactId>
57+
<version>3.8.0</version>
58+
<configuration>
59+
<source>${jdk.version}</source>
60+
<target>${jdk.version}</target>
61+
<encoding>${project.build.sourceEncoding}</encoding>
62+
</configuration>
63+
</plugin>
64+
</plugins>
65+
</pluginManagement>
66+
</build>
67+
</project>
68+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package core.basesyntax;
2+
3+
/**
4+
* Feel free to remove this class and create your own.
5+
*/
6+
public class HelloWorld {
7+
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package core.basesyntax;
2+
3+
/**
4+
* Feel free to remove this class and create your own.
5+
*/
6+
public class HelloWorldTest {
7+
8+
}

0 commit comments

Comments
 (0)