Skip to content

Commit 4875782

Browse files
committed
wip
1 parent 1be271c commit 4875782

File tree

2 files changed

+239
-2
lines changed

2 files changed

+239
-2
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/target
22
/classes
33
/checkouts
4-
pom.xml
5-
pom.xml.asc
4+
/pom.xml
5+
/pom.xml.asc
66
*.jar
77
*.class
88
/.lein-*

dependabot/pom.xml

Lines changed: 237 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,237 @@
1+
<?xml version="1.0" encoding="UTF-8"?><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">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>metosin</groupId>
4+
<artifactId>compojure-api</artifactId>
5+
<packaging>jar</packaging>
6+
<version>2.0.0-alpha34-SNAPSHOT</version>
7+
<name>compojure-api</name>
8+
<description>Compojure Api</description>
9+
10+
<licenses>
11+
<license>
12+
<name>Eclipse Public License</name>
13+
<url>http://www.eclipse.org/legal/epl-v10.html</url>
14+
<distribution>repo</distribution>
15+
<comments>same as Clojure</comments>
16+
</license>
17+
</licenses>
18+
19+
<build>
20+
<sourceDirectory>src</sourceDirectory>
21+
<testSourceDirectory>test19</testSourceDirectory>
22+
<resources>
23+
<resource>
24+
<directory>resources</directory>
25+
</resource>
26+
</resources>
27+
<testResources>
28+
<testResource>
29+
<directory>resources</directory>
30+
</testResource>
31+
</testResources>
32+
<directory>target</directory>
33+
<outputDirectory>target/classes</outputDirectory>
34+
<plugins>
35+
<plugin>
36+
<groupId>org.codehaus.mojo</groupId>
37+
<artifactId>build-helper-maven-plugin</artifactId>
38+
<version>1.7</version>
39+
<executions>
40+
<execution>
41+
<id>add-test-source</id>
42+
<phase>generate-test-sources</phase>
43+
<goals>
44+
<goal>add-test-source</goal>
45+
</goals>
46+
<configuration>
47+
<sources>
48+
<source>test</source>
49+
</sources>
50+
</configuration>
51+
</execution>
52+
</executions>
53+
</plugin>
54+
</plugins>
55+
</build>
56+
<repositories>
57+
<repository>
58+
<id>central</id>
59+
<url>https://repo1.maven.org/maven2/</url>
60+
<snapshots>
61+
<enabled>false</enabled>
62+
</snapshots>
63+
<releases>
64+
<enabled>true</enabled>
65+
</releases>
66+
</repository>
67+
<repository>
68+
<id>clojars</id>
69+
<url>https://repo.clojars.org/</url>
70+
<snapshots>
71+
<enabled>true</enabled>
72+
</snapshots>
73+
<releases>
74+
<enabled>true</enabled>
75+
</releases>
76+
</repository>
77+
</repositories>
78+
<dependencyManagement>
79+
<dependencies/>
80+
</dependencyManagement>
81+
<dependencies>
82+
<dependency>
83+
<groupId>prismatic</groupId>
84+
<artifactId>schema</artifactId>
85+
<version>1.1.12</version>
86+
</dependency>
87+
<dependency>
88+
<groupId>prismatic</groupId>
89+
<artifactId>plumbing</artifactId>
90+
<version>0.5.5</version>
91+
</dependency>
92+
<dependency>
93+
<groupId>ikitommi</groupId>
94+
<artifactId>linked</artifactId>
95+
<version>1.3.1-alpha1</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>metosin</groupId>
99+
<artifactId>muuntaja</artifactId>
100+
<version>0.6.6</version>
101+
</dependency>
102+
<dependency>
103+
<groupId>com.fasterxml.jackson.datatype</groupId>
104+
<artifactId>jackson-datatype-joda</artifactId>
105+
<version>2.10.1</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>ring</groupId>
109+
<artifactId>ring-core</artifactId>
110+
<version>1.8.0</version>
111+
</dependency>
112+
<dependency>
113+
<groupId>compojure</groupId>
114+
<artifactId>compojure</artifactId>
115+
<version>1.6.1</version>
116+
</dependency>
117+
<dependency>
118+
<groupId>metosin</groupId>
119+
<artifactId>spec-tools</artifactId>
120+
<version>0.10.6</version>
121+
</dependency>
122+
<dependency>
123+
<groupId>metosin</groupId>
124+
<artifactId>ring-http-response</artifactId>
125+
<version>0.9.1</version>
126+
</dependency>
127+
<dependency>
128+
<groupId>metosin</groupId>
129+
<artifactId>ring-swagger-ui</artifactId>
130+
<version>3.24.3</version>
131+
</dependency>
132+
<dependency>
133+
<groupId>metosin</groupId>
134+
<artifactId>ring-swagger</artifactId>
135+
<version>1.0.0</version>
136+
</dependency>
137+
<dependency>
138+
<groupId>clj-time</groupId>
139+
<artifactId>clj-time</artifactId>
140+
<version>0.15.2</version>
141+
</dependency>
142+
<dependency>
143+
<groupId>joda-time</groupId>
144+
<artifactId>joda-time</artifactId>
145+
<version>2.10.5</version>
146+
</dependency>
147+
<dependency>
148+
<groupId>riddley</groupId>
149+
<artifactId>riddley</artifactId>
150+
<version>0.2.0</version>
151+
</dependency>
152+
<dependency>
153+
<groupId>org.clojure</groupId>
154+
<artifactId>clojure</artifactId>
155+
<version>1.9.0</version>
156+
<scope>test</scope>
157+
</dependency>
158+
<dependency>
159+
<groupId>org.clojure</groupId>
160+
<artifactId>core.unify</artifactId>
161+
<version>0.6.0</version>
162+
<scope>test</scope>
163+
</dependency>
164+
<dependency>
165+
<groupId>org.clojure</groupId>
166+
<artifactId>core.async</artifactId>
167+
<version>0.6.532</version>
168+
<scope>test</scope>
169+
</dependency>
170+
<dependency>
171+
<groupId>javax.servlet</groupId>
172+
<artifactId>javax.servlet-api</artifactId>
173+
<version>4.0.1</version>
174+
<scope>test</scope>
175+
</dependency>
176+
<dependency>
177+
<groupId>peridot</groupId>
178+
<artifactId>peridot</artifactId>
179+
<version>0.5.2</version>
180+
<scope>test</scope>
181+
</dependency>
182+
<dependency>
183+
<groupId>com.stuartsierra</groupId>
184+
<artifactId>component</artifactId>
185+
<version>0.4.0</version>
186+
<scope>test</scope>
187+
</dependency>
188+
<dependency>
189+
<groupId>expound</groupId>
190+
<artifactId>expound</artifactId>
191+
<version>0.8.2</version>
192+
<scope>test</scope>
193+
</dependency>
194+
<dependency>
195+
<groupId>metosin</groupId>
196+
<artifactId>jsonista</artifactId>
197+
<version>0.2.5</version>
198+
<scope>test</scope>
199+
</dependency>
200+
<dependency>
201+
<groupId>reloaded.repl</groupId>
202+
<artifactId>reloaded.repl</artifactId>
203+
<version>0.2.4</version>
204+
<scope>test</scope>
205+
</dependency>
206+
<dependency>
207+
<groupId>metosin</groupId>
208+
<artifactId>muuntaja-msgpack</artifactId>
209+
<version>0.6.6</version>
210+
<scope>test</scope>
211+
</dependency>
212+
<dependency>
213+
<groupId>metosin</groupId>
214+
<artifactId>muuntaja-yaml</artifactId>
215+
<version>0.6.6</version>
216+
<scope>test</scope>
217+
</dependency>
218+
<dependency>
219+
<groupId>org.immutant</groupId>
220+
<artifactId>immutant</artifactId>
221+
<version>2.1.10</version>
222+
<scope>test</scope>
223+
</dependency>
224+
<dependency>
225+
<groupId>http-kit</groupId>
226+
<artifactId>http-kit</artifactId>
227+
<version>2.3.0</version>
228+
<scope>test</scope>
229+
</dependency>
230+
<dependency>
231+
<groupId>criterium</groupId>
232+
<artifactId>criterium</artifactId>
233+
<version>0.4.5</version>
234+
<scope>test</scope>
235+
</dependency>
236+
</dependencies>
237+
</project>

0 commit comments

Comments
 (0)