Skip to content

Commit 11cf8a3

Browse files
committed
refactor mustache into a separate things
1 parent 0d748bb commit 11cf8a3

File tree

328 files changed

+8883
-109
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

328 files changed

+8883
-109
lines changed

builder/pom.xml

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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.github.spullara.mustache.java</groupId>
6+
<artifactId>builder</artifactId>
7+
<version>0.5-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>mustache.java</name>
11+
<description>Implementation of mustache.js for Java</description>
12+
<url>http://github.com/spullara/mustache.java</url>
13+
14+
<licenses>
15+
<license>
16+
<name>Apache License 2.0</name>
17+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
18+
<distribution>repo</distribution>
19+
</license>
20+
</licenses>
21+
22+
<scm>
23+
<connection>scm:git:git://github.com/spullara/mustache.java.git</connection>
24+
<url>http://github.com/spullara/mustache.java</url>
25+
</scm>
26+
27+
<developers>
28+
<developer>
29+
<name>Sam Pullara</name>
30+
<email>sam@sampullara.com</email>
31+
<url>http://www.javarants.com</url>
32+
</developer>
33+
</developers>
34+
35+
<properties>
36+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37+
</properties>
38+
39+
<dependencies>
40+
<!-- JSON support -->
41+
<dependency>
42+
<groupId>org.codehaus.jackson</groupId>
43+
<artifactId>jackson-mapper-asl</artifactId>
44+
<version>1.5.2</version>
45+
</dependency>
46+
47+
<!-- Jetty Client -->
48+
<dependency>
49+
<groupId>org.eclipse.jetty</groupId>
50+
<artifactId>jetty-client</artifactId>
51+
<version>7.2.2.v20101205</version>
52+
</dependency>
53+
54+
<!-- Google Guava -->
55+
<dependency>
56+
<groupId>com.google.guava</groupId>
57+
<artifactId>guava</artifactId>
58+
<version>r09</version>
59+
</dependency>
60+
61+
<!-- Servlets -->
62+
<dependency>
63+
<groupId>javax.servlet</groupId>
64+
<artifactId>servlet-api</artifactId>
65+
<version>2.5</version>
66+
<scope>provided</scope>
67+
</dependency>
68+
69+
<!-- Testing -->
70+
<dependency>
71+
<groupId>junit</groupId>
72+
<artifactId>junit</artifactId>
73+
<version>4.8.1</version>
74+
<scope>test</scope>
75+
</dependency>
76+
</dependencies>
77+
78+
<repositories>
79+
<repository>
80+
<id>javarants releases</id>
81+
<url>http://www.javarants.com/repository/</url>
82+
</repository>
83+
<repository>
84+
<id>javarants snapshots</id>
85+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
86+
</repository>
87+
</repositories>
88+
89+
<distributionManagement>
90+
<site>
91+
<id>www.javarants.com</id>
92+
<url>scp://www.javarants.com/mnt/data/sites/javarants/sites/</url>
93+
</site>
94+
<repository>
95+
<id>sonatype-nexus-staging</id>
96+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
97+
</repository>
98+
<snapshotRepository>
99+
<id>sonatype-nexus-snapshots</id>
100+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
101+
</snapshotRepository>
102+
</distributionManagement>
103+
104+
<build>
105+
<plugins>
106+
<plugin>
107+
<groupId>org.apache.maven.plugins</groupId>
108+
<artifactId>maven-compiler-plugin</artifactId>
109+
<configuration>
110+
<source>1.6</source>
111+
<target>1.6</target>
112+
<encoding>UTF-8</encoding>
113+
</configuration>
114+
</plugin>
115+
</plugins>
116+
</build>
117+
</project>

0 commit comments

Comments
 (0)