Skip to content

Commit

Permalink
some kind of refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
kreon committed Jun 20, 2015
1 parent 8f9a4e1 commit bcc4fd7
Show file tree
Hide file tree
Showing 15 changed files with 422 additions and 291 deletions.
3 changes: 2 additions & 1 deletion jnode-assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
<parent>
<groupId>jnode</groupId>
<artifactId>jnode</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>jnode-assembly</artifactId>
<packaging>pom</packaging>
<name>jnode-assembly</name>
<description>jnode assembly module</description>
<version>1.5</version>

<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions jnode-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<parent>
<groupId>jnode</groupId>
<artifactId>jnode</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</parent>
<artifactId>jnode-core</artifactId>
<version>1.0</version>
<version>1.5</version>
<name>jnode-core</name>
<packaging>jar</packaging>
<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions jnode-httpd-module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
<parent>
<groupId>jnode</groupId>
<artifactId>jnode</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</parent>
<artifactId>jnode-httpd-module</artifactId>
<version>1.0</version>
<version>1.1</version>
<name>jnode-httpd-module</name>
<description>jNode HTTPD ( WEB ) module</description>
<dependencies>
<dependency>
<groupId>jnode</groupId>
<artifactId>jnode-core</artifactId>
<scope>provided</scope>
<version>1.0</version>
<version>1.5</version>
</dependency>
<dependency>
<groupId>com.sparkjava</groupId>
Expand Down
6 changes: 3 additions & 3 deletions jnode-mail-module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
<parent>
<groupId>jnode</groupId>
<artifactId>jnode</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</parent>
<artifactId>jnode-mail-module</artifactId>
<version>1.0</version>
<version>0.9</version>
<name>jnode-mail-module</name>
<description>Module to send emails</description>
<dependencies>
<dependency>
<groupId>jnode</groupId>
<artifactId>jnode-core</artifactId>
<scope>provided</scope>
<version>1.0</version>
<version>1.5</version>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
Expand Down
77 changes: 38 additions & 39 deletions jnode-nntp/pom.xml
Original file line number Diff line number Diff line change
@@ -1,45 +1,44 @@
<?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">
<parent>
<artifactId>jnode</artifactId>
<groupId>jnode</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<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">
<parent>
<artifactId>jnode</artifactId>
<groupId>jnode</groupId>
<version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>jnode-nntp</artifactId>
<version>1.0-pre-alpha</version>
<artifactId>jnode-nntp</artifactId>
<version>0.8a</version>

<dependencies>
<dependency>
<groupId>jnode</groupId>
<artifactId>jnode-core</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>14.0.1</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>jnode</groupId>
<artifactId>jnode-core</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>14.0.1</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
</dependencies>


</project>
Loading

0 comments on commit bcc4fd7

Please sign in to comment.