-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
55 lines (47 loc) · 1.68 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2007-2012 Artigile.
~ Software development company.
~ All Rights Reserved.
~
~ This software is the confidential and proprietary information of Artigile. ("Confidential Information").
~ You shall not disclose such Confidential Information and shall use it only in accordance with the terms of the
~ license agreement you entered into with Artigile software company.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.artigile.coursera</groupId>
<artifactId>mainpom</artifactId>
<packaging>pom</packaging>
<name>Coursera classes</name>
<version>1.0</version>
<modules>
<module>algorythms</module>
<module>algo2/week1</module>
<module>algo2/week2</module>
<module>algo2/week3</module>
<module>algo2/week5</module>
<module>algo2/week6</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>14.0-rc1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
</plugins>
</build>
</project>