Skip to content

Commit c145d7d

Browse files
committed
Initial
0 parents  commit c145d7d

File tree

3 files changed

+66
-0
lines changed

3 files changed

+66
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.idea
2+
out
3+
target
4+
*.iml
5+
log
6+
7+
8+

pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>ru.javawebinar</groupId>
6+
<artifactId>topjava</artifactId>
7+
<packaging>jar</packaging>
8+
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<name>Calories Management</name>
12+
<url>http://topjava.herokuapp.com/</url>
13+
14+
<properties>
15+
<java.version>1.8</java.version>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
18+
</properties>
19+
20+
<build>
21+
<finalName>topjava</finalName>
22+
<defaultGoal>install</defaultGoal>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-compiler-plugin</artifactId>
27+
<version>3.1</version>
28+
<configuration>
29+
<source>${java.version}</source>
30+
<target>${java.version}</target>
31+
</configuration>
32+
</plugin>
33+
</plugins>
34+
</build>
35+
36+
<dependencies>
37+
</dependencies>
38+
39+
<profiles>
40+
</profiles>
41+
42+
<dependencyManagement>
43+
</dependencyManagement>
44+
</project>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package ru.javawebinar.topjava;
2+
3+
/**
4+
* User: gkislin
5+
* Date: 05.08.2015
6+
*
7+
* @link http://caloriesmng.herokuapp.com/
8+
* @link https://github.com/JavaOPs/topjava
9+
*/
10+
public class Main {
11+
public static void main(String[] args) {
12+
System.out.format("Hello Topjava Enterprise!");
13+
}
14+
}

0 commit comments

Comments
 (0)