Skip to content

Commit c460145

Browse files
committedSep 25, 2014
Cria a pizzaria
0 parents  commit c460145

File tree

3 files changed

+90
-0
lines changed

3 files changed

+90
-0
lines changed
 

‎.gitignore

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
build/
2+
bin/
3+
target/
4+
.settings/
5+
.classpath
6+
.project
7+
src/main/java/Main.java
8+
.DS_Store
9+
*.iml
10+
*.ipr
11+
*.iws
12+
*.ids
13+
*.orig
14+
.idea/
15+
tomcat
16+
suggest/data
17+
nohup.out
18+
dump.rdb
19+
20+
out
21+
22+
goblinConfig.properties
23+
24+
.byke
25+
src/main/resources/rebel.xml
26+
27+
elo7/cas.log
28+
elo7/perfStats.log
29+
elo7-core/release.properties
30+
31+
node_modules
32+
target-grunt
33+
34+
all.min.js
35+
all.lib.min.js
36+
37+
all.min.css
38+
allPayment.min.js
39+
allPayment.min.css
40+
41+
elo7/grunt/v2/
42+
elo7/grunt/assets/
43+
elo7/grunt/mobile/
44+
45+
##SASS
46+
.sass-cache
47+
dest
48+
elo7/src/main/webapp/v2/assets/images/
49+
elo7/src/main/webapp/v2/assets/css/sprite.css
50+
51+
## V3
52+
elo7/src/main/webapp/v3/desktop/css/
53+
elo7/src/main/webapp/v3/mobile/css/
54+
elo7/src/main/webapp/v3/common/images/
55+
elo7/src/main/webapp/v3/desktop/images/
56+
elo7/src/main/webapp/v3/mobile/images/
57+
elo7/src/main/webapp/v3/mobile/js/elo7.js

‎pom.xml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>com.caesarralf.pizzaria</groupId>
6+
<artifactId>pizzaria</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>pizzaria</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
<dependencies>
18+
<dependency>
19+
<groupId>junit</groupId>
20+
<artifactId>junit</artifactId>
21+
<version>3.8.1</version>
22+
<scope>test</scope>
23+
</dependency>
24+
</dependencies>
25+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.caesarralf.pizzaria;
2+
3+
public class Pizzaria {
4+
5+
public static void main(String[] args) {
6+
System.out.println("Pizzaria do Ralf!");
7+
}
8+
}

0 commit comments

Comments
 (0)
Please sign in to comment.