Skip to content

Commit 0a3cfde

Browse files
author
kura
committed
scala commons -lite
1 parent 12af604 commit 0a3cfde

File tree

2 files changed

+159
-0
lines changed

2 files changed

+159
-0
lines changed

ceon-scala-commons-lite/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ceon-scala-commons
2+
==================

ceon-scala-commons-lite/pom.xml

+157
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
<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/maven-v4_0_0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<parent>
4+
<groupId>pl.edu.icm.coansys</groupId>
5+
<artifactId>coansys</artifactId>
6+
<version>1.10-rc3-SNAPSHOT</version>
7+
</parent>
8+
<artifactId>ceon-scala-commons-lite</artifactId>
9+
<name>CeON Scala Commons</name>
10+
<inceptionYear>2013</inceptionYear>
11+
12+
<dependencies>
13+
<dependency>
14+
<groupId>org.scala-lang</groupId>
15+
<artifactId>scala-library</artifactId>
16+
<version>${scala.version}</version>
17+
</dependency>
18+
<dependency>
19+
<groupId>com.jsuereth</groupId>
20+
<artifactId>scala-arm_${scala.binary.version}</artifactId>
21+
<version>1.3</version>
22+
</dependency>
23+
<dependency>
24+
<groupId>junit</groupId>
25+
<artifactId>junit</artifactId>
26+
<version>4.10</version>
27+
<scope>test</scope>
28+
</dependency>
29+
<dependency>
30+
<groupId>org.jdom</groupId>
31+
<artifactId>jdom</artifactId>
32+
<version>1.1</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>com.typesafe</groupId>
36+
<artifactId>scalalogging-slf4j_${scala.binary.version}</artifactId>
37+
<version>1.0.1</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.apache.hadoop</groupId>
41+
<artifactId>hadoop-common</artifactId>
42+
<version>${hadoop.common.version}</version>
43+
<scope>provided</scope>
44+
</dependency>
45+
<!-- <dependency>
46+
<groupId>com.nicta</groupId>
47+
<artifactId>scoobi_${scala.binary.version}</artifactId>
48+
<version>0.7.1-cdh4</version>
49+
</dependency> -->
50+
<dependency>
51+
<groupId>pl.edu.icm.coansys</groupId>
52+
<artifactId>models</artifactId>
53+
<version>1.3</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>tw.edu.ntu.csie</groupId>
57+
<artifactId>libsvm</artifactId>
58+
<version>3.1</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>pl.edu.icm.bwmeta</groupId>
62+
<artifactId>bwmeta</artifactId>
63+
<version>2.0.1</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>commons-io</groupId>
67+
<artifactId>commons-io</artifactId>
68+
<version>2.4</version>
69+
</dependency>
70+
</dependencies>
71+
72+
<build>
73+
<sourceDirectory>src/main/scala</sourceDirectory>
74+
<testSourceDirectory>src/test/scala</testSourceDirectory>
75+
<plugins>
76+
<plugin>
77+
<groupId>org.scala-tools</groupId>
78+
<artifactId>maven-scala-plugin</artifactId>
79+
<executions>
80+
<execution>
81+
<goals>
82+
<goal>compile</goal>
83+
<goal>testCompile</goal>
84+
</goals>
85+
</execution>
86+
</executions>
87+
<configuration>
88+
<jvmArgs>
89+
<jvmArg>-Xms64m</jvmArg>
90+
<jvmArg>-Xmx1024m</jvmArg>
91+
</jvmArgs>
92+
</configuration>
93+
</plugin>
94+
<plugin>
95+
<artifactId>maven-assembly-plugin</artifactId>
96+
<configuration>
97+
<archive>
98+
<manifest>
99+
<mainClass>fully.qualified.MainClass</mainClass>
100+
</manifest>
101+
</archive>
102+
<descriptorRefs>
103+
<descriptorRef>jar-with-dependencies</descriptorRef>
104+
</descriptorRefs>
105+
</configuration>
106+
</plugin>
107+
<plugin>
108+
<groupId>org.apache.maven.plugins</groupId>
109+
<artifactId>maven-release-plugin</artifactId>
110+
<version>2.4.1</version>
111+
</plugin>
112+
</plugins>
113+
</build>
114+
115+
<repositories>
116+
<repository>
117+
<id>yadda</id>
118+
<name>YADDA project repository</name>
119+
<url>http://maven.icm.edu.pl/artifactory/repo</url>
120+
</repository>
121+
</repositories>
122+
123+
<scm>
124+
<connection>scm:git:ssh://git@github.com/CeON/ceon-scala-commons.git</connection>
125+
<developerConnection>scm:git:ssh://git@github.com/CeON/ceon-scala-commons.git</developerConnection>
126+
<url>https://github.com/CeON/ceon-scala-commons</url>
127+
<tag>HEAD</tag>
128+
</scm>
129+
130+
<distributionManagement>
131+
<snapshotRepository>
132+
<id>ceon-commons-snapshots</id>
133+
<name>maven.ceon.pl-snapshots</name>
134+
<url>http://maven.icm.edu.pl/artifactory/ceon-commons-snapshots</url>
135+
</snapshotRepository>
136+
<repository>
137+
<id>ceon-commons-releases</id>
138+
<name>maven.ceon.pl-releases</name>
139+
<url>http://maven.icm.edu.pl/artifactory/ceon-commons-releases</url>
140+
</repository>
141+
</distributionManagement>
142+
143+
<ciManagement>
144+
<system>jenkins</system>
145+
<url>https://ci.ceon.pl/</url>
146+
</ciManagement>
147+
148+
<issueManagement>
149+
<url>https://mantis.vls.icm.edu.pl/</url>
150+
<system>mantis</system>
151+
</issueManagement>
152+
153+
<organization>
154+
<name>Interdisciplinary Centre for Mathematical and Computational Modelling, University of Warsaw</name>
155+
<url>http://www.icm.edu.pl/</url>
156+
</organization>
157+
</project>

0 commit comments

Comments
 (0)