|
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"> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion> |
3 | | - <groupId>amalloy</groupId> |
4 | | - <artifactId>ring-buffer</artifactId> |
5 | | - <packaging>jar</packaging> |
6 | | - <version>1.3.1</version> |
7 | | - <name>ring-buffer</name> |
8 | | - <description>Persistent bounded-size queue implementation in Clojure</description> |
9 | | - <url>https://github.com/clj-commons/ring-buffer</url> |
| 4 | + <groupId>scout</groupId> |
| 5 | + <artifactId>scout</artifactId> |
| 6 | + <version>0.1.0</version> |
| 7 | + <name>scout</name> |
| 8 | + <description>Functional string searching and matching for parsing.</description> |
| 9 | + <url>http://example.com/FIXME</url> |
10 | 10 | <licenses> |
11 | 11 | <license> |
12 | 12 | <name>Eclipse Public License</name> |
13 | 13 | <url>http://www.eclipse.org/legal/epl-v10.html</url> |
14 | 14 | </license> |
15 | 15 | </licenses> |
16 | 16 | <scm> |
17 | | - <tag>ef3635c71182eac1b6ecfa216c14adf90fabd28e</tag> |
| 17 | + <connection>scm:git:git://github.com/davidsantiago/scout.git</connection> |
| 18 | + <developerConnection>scm:git:ssh://git@github.com/davidsantiago/scout.git</developerConnection> |
| 19 | + <tag>2b825a7f8d8073b805ad37e0006dccd8d2d9efef</tag> |
| 20 | + <url>https://github.com/davidsantiago/scout</url> |
18 | 21 | </scm> |
19 | 22 | <build> |
20 | 23 | <sourceDirectory>src</sourceDirectory> |
|
25 | 28 | </resource> |
26 | 29 | </resources> |
27 | 30 | <testResources> |
| 31 | + <testResource> |
| 32 | + <directory>dev-resources</directory> |
| 33 | + </testResource> |
28 | 34 | <testResource> |
29 | 35 | <directory>resources</directory> |
30 | 36 | </testResource> |
31 | 37 | </testResources> |
32 | 38 | <directory>target</directory> |
33 | 39 | <outputDirectory>target/classes</outputDirectory> |
34 | | - <plugins/> |
35 | 40 | </build> |
36 | 41 | <repositories> |
37 | 42 | <repository> |
38 | 43 | <id>central</id> |
39 | | - <url>https://repo1.maven.org/maven2/</url> |
| 44 | + <url>http://repo1.maven.org/maven2</url> |
40 | 45 | <snapshots> |
41 | | - <enabled>false</enabled> |
| 46 | + <enabled>true</enabled> |
42 | 47 | </snapshots> |
43 | 48 | <releases> |
44 | 49 | <enabled>true</enabled> |
45 | 50 | </releases> |
46 | 51 | </repository> |
47 | 52 | <repository> |
48 | 53 | <id>clojars</id> |
49 | | - <url>https://repo.clojars.org/</url> |
| 54 | + <url>http://clojars.org/repo/</url> |
50 | 55 | <snapshots> |
51 | 56 | <enabled>true</enabled> |
52 | 57 | </snapshots> |
|
55 | 60 | </releases> |
56 | 61 | </repository> |
57 | 62 | </repositories> |
58 | | - <dependencyManagement> |
59 | | - <dependencies/> |
60 | | - </dependencyManagement> |
61 | 63 | <dependencies> |
62 | 64 | <dependency> |
63 | 65 | <groupId>org.clojure</groupId> |
64 | 66 | <artifactId>clojure</artifactId> |
65 | | - <version>1.10.1</version> |
66 | | - <scope>provided</scope> |
67 | | - </dependency> |
68 | | - <dependency> |
69 | | - <groupId>org.clojure</groupId> |
70 | | - <artifactId>clojurescript</artifactId> |
71 | | - <version>1.10.520</version> |
72 | | - <scope>provided</scope> |
| 67 | + <version>1.3.0</version> |
73 | 68 | </dependency> |
74 | 69 | </dependencies> |
75 | 70 | </project> |
0 commit comments