Skip to content

Commit

Permalink
FEATURE: structure had been revised.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioanbsu committed Nov 8, 2013
1 parent 492c82e commit 5ebe954
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 4 deletions.
6 changes: 3 additions & 3 deletions algo2/week1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
<version>1.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>com.artigile.coursera</groupId>
<artifactId>algo2</artifactId>
<groupId>com.artigile.coursera.algo2</groupId>
<artifactId>week1</artifactId>
<packaging>jar</packaging>
<name>Algorythms</name>
<name>week1</name>
<version>1.0</version>

<dependencies>
Expand Down
53 changes: 53 additions & 0 deletions algo2/week2/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?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>
<parent>
<groupId>com.artigile.coursera</groupId>
<artifactId>mainpom</artifactId>
<version>1.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>com.artigile.coursera.algo2</groupId>

<artifactId>week2</artifactId>
<packaging>jar</packaging>
<name>week2</name>
<version>1.0</version>

<dependencies>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

</dependencies>


<build>
<plugins>

</plugins>
</build>

</project>
2 changes: 1 addition & 1 deletion algorythms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version>1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.artigile.coursera</groupId>
<groupId>com.artigile.coursera.algo1</groupId>
<artifactId>algorythms</artifactId>
<packaging>jar</packaging>
<name>Algorythms</name>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<modules>
<module>algorythms</module>
<module>algo2/week1</module>
<module>algo2/week2</module>
</modules>

<dependencyManagement>
Expand Down

0 comments on commit 5ebe954

Please sign in to comment.