Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Mavenize jenet #1

Open
seeseekey opened this issue Aug 15, 2012 · 1 comment
Open

Mavenize jenet #1

seeseekey opened this issue Aug 15, 2012 · 1 comment

Comments

@seeseekey
Copy link
Owner

It would be great to have this library as Maven dependency. I attached a pom that contains the apache commons dependencies and creates all relevant artifacts (jar, javadoc, sources). The folders "/src" and "/test" just should be renamed to "/src/main/java" and "/src/main/test" to match the Maven standard project layout.

Maybe the release artifacts could be published to maven central.

Kind regards

@seeseekey
Copy link
Owner Author


4.0.0
com.googlecode.jenet
jenet
1.0.0
jeNet
jeNet is ENet (http://enet.bespin.org) for Java. Previously it was be found under http://java.net/projects/jenet/ and is here hosted for preservation.
http://code.google.com/p/jenet/
jar


The MIT License (MIT)
http://www.opensource.org/licenses/mit-license
repo



http://code.google.com/p/jenet/source/browse
scm:git:http://code.google.com/p/jenet
scm:git:https://code.google.com/p/jenet


<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

    <dependencies>
            <dependency>
                    <groupId>commons-collections</groupId>
                    <artifactId>commons-collections</artifactId>
                    <version>3.2.1</version>
            </dependency>
            <dependency>
                    <groupId>commons-configuration</groupId>
                    <artifactId>commons-configuration</artifactId>
                    <version>1.7</version>
            </dependency>
            <dependency>
                    <groupId>commons-lang</groupId>
                    <artifactId>commons-lang</artifactId>
                    <version>2.6</version>
            </dependency>
            <dependency>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                    <version>1.1.1</version>
            </dependency>
            <dependency>
                    <groupId>junit</groupId>
                    <artifactId>junit</artifactId>
                    <version>4.6</version>
                    <scope>test</scope>
            </dependency>
    </dependencies>
    <build>
            <plugins>
                    <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-javadoc-plugin</artifactId>
                            <version>2.8.1</version>
                            <executions>
                                    <execution>
                                            <goals>
                                                    <goal>jar</goal>
                                                    <goal>test-jar</goal>
                                            </goals>
                                            <phase>verify</phase>
                                    </execution>
                            </executions>
                            <configuration>
                            </configuration>
                    </plugin>
                    <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-source-plugin</artifactId>
                            <version>2.1.2</version>
                            <executions>
                                    <execution>
                                            <id>attach-sources</id>
                                            <phase>verify</phase>
                                            <goals>
                                                    <goal>jar-no-fork</goal>
                                                    <goal>test-jar-no-fork</goal>
                                            </goals>
                                    </execution>
                            </executions>
                    </plugin>
            </plugins>
    </build>

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant