diff options
| author | blha303 <stevensmith.ome@gmail.com> | 2013-11-10 16:55:52 +0800 |
|---|---|---|
| committer | drtshock <drtshock13@gmail.com> | 2013-11-10 03:01:01 -0600 |
| commit | 62b45b0590b69c5b0feee63b751c4d15776f70da (patch) | |
| tree | 4be7fc90cb4436b94d1b31d94fe10e9ba2893fb3 | |
| parent | c760dfd114949aabd277c8a7e09d80379737d350 (diff) | |
Mavenized
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | pom.xml | 31 | ||||
| -rw-r--r-- | src/main/java/Potato.java (renamed from src/Potato.java) | 0 | ||||
| -rw-r--r-- | src/main/java/Tuber.java (renamed from src/Tuber.java) | 0 | ||||
| -rw-r--r-- | src/main/resources/5728853850_a3bbb14083_z.jpg (renamed from 5728853850_a3bbb14083_z.jpg) | bin | 65939 -> 65939 bytes | |||
| -rw-r--r-- | src/main/resources/lovethepotato.jpg (renamed from lovethepotato.jpg) | bin | 73078 -> 73078 bytes | |||
| -rw-r--r-- | src/main/resources/sourcream.png (renamed from sourcream.png) | bin | 64151 -> 64151 bytes |
7 files changed, 35 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..889cb7f --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +target/ +*.class +.classpath +.project
\ No newline at end of file @@ -0,0 +1,31 @@ +<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>drtshock</groupId> + <artifactId>potato</artifactId> + <version>1.0</version> + <name>Potato</name> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.0.2</version> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>2.1</version> + <configuration> + <archive> + <addMavenDescriptor>false</addMavenDescriptor> + </archive> + <finalName>Potato</finalName> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/src/Potato.java b/src/main/java/Potato.java index 399cdda..399cdda 100644 --- a/src/Potato.java +++ b/src/main/java/Potato.java diff --git a/src/Tuber.java b/src/main/java/Tuber.java index ec36f28..ec36f28 100644 --- a/src/Tuber.java +++ b/src/main/java/Tuber.java diff --git a/5728853850_a3bbb14083_z.jpg b/src/main/resources/5728853850_a3bbb14083_z.jpg Binary files differindex 6791074..6791074 100644 --- a/5728853850_a3bbb14083_z.jpg +++ b/src/main/resources/5728853850_a3bbb14083_z.jpg diff --git a/lovethepotato.jpg b/src/main/resources/lovethepotato.jpg Binary files differindex 20165e2..20165e2 100644 --- a/lovethepotato.jpg +++ b/src/main/resources/lovethepotato.jpg diff --git a/sourcream.png b/src/main/resources/sourcream.png Binary files differindex d00f648..d00f648 100644 --- a/sourcream.png +++ b/src/main/resources/sourcream.png |
