source: other-projects/hathitrust/solr-extracted-features/trunk/pom.xml@ 30926

Last change on this file since 30926 was 30909, checked in by davidb, 7 years ago

Additional finesse added in as a result of further testing on Vagrant master node

  • Property svn:executable set to *
File size: 2.1 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <name>HTRC Extracted Features Solr Ingest</name>
8 <url>analytics.hathitrust.org</url>
9 <groupId>org.hathitrust</groupId>
10 <artifactId>htrc-ef-ingest</artifactId>
11 <version>0.9</version>
12 <packaging>jar</packaging>
13
14 <dependencies>
15 <dependency>
16 <groupId>org.apache.spark</groupId>
17 <artifactId>spark-core_2.11</artifactId>
18 <version>2.0.1</version>
19 <scope>provided</scope>
20 </dependency>
21
22 <!--
23 <dependency>
24 <groupId>org.apache.hadoop</groupId>
25 <artifactId>hadoop-client</artifactId>
26 <version>2.7.1</version>
27 </dependency>
28 -->
29
30 <dependency>
31 <groupId>org.apache.commons</groupId>
32 <artifactId>commons-compress</artifactId>
33 <version>1.10</version>
34 </dependency>
35
36 <dependency>
37 <groupId>org.json</groupId>
38 <artifactId>json</artifactId>
39 <version>20160212</version>
40 </dependency>
41
42 <dependency>
43 <groupId>commons-cli</groupId>
44 <artifactId>commons-cli</artifactId>
45 <version>1.2</version>
46 </dependency>
47
48 </dependencies>
49
50
51 <build>
52 <plugins>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-compiler-plugin</artifactId>
56 <version>2.3.2</version>
57 <configuration>
58 <source>1.7</source>
59 <target>1.7</target>
60 </configuration>
61 </plugin>
62
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-assembly-plugin</artifactId>
66 <configuration>
67 <archive>
68 <manifest>
69 <mainClass>org.hathitrust.PrepareForIngest</mainClass>
70 </manifest>
71 </archive>
72 </configuration>
73 </plugin>
74 </plugins>
75 </build>
76
77</project>
Note: See TracBrowser for help on using the repository browser.