Skip to content

Commit

Permalink
Added initial project structure and Maven project.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeje committed May 21, 2012
1 parent b3b0fe0 commit da316d2
Show file tree
Hide file tree
Showing 5 changed files with 116 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -1 +1,4 @@
target/ target/
.idea/
*.ipr
*.iml
4 changes: 2 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
xbee-tools XBee/ZigBee Java Tools
========== ======================


XBee/ZigBee Java API and tools based on Netty. XBee/ZigBee Java API and tools based on Netty.
79 changes: 79 additions & 0 deletions pom.xml
@@ -0,0 +1,79 @@
<?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">
<modelVersion>4.0.0</modelVersion>

<groupId>com.kalixia.xbee</groupId>
<artifactId>xbee-tools</artifactId>
<version>0.1</version>
<name>XBee/ZigBee Tools</name>
<description>XBee/ZigBee Java API and tools based on Netty.</description>
<url>https://github.com/kalixia/xbee-tools</url>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<scm>
<connection>scm:git:git://github.com/kalixia/xbee-tools.git</connection>
<developerConnection>scm:git:git@github.com:kalixia/xbee-tools.git</developerConnection>
<url>https://github.com/kalixia/xbee-tools</url>
</scm>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/kalixia/xbee-tools/issues</url>
</issueManagement>

<developers>
<developer>
<id>jeje</id>
<name>Jerome Bernard</name>
<email>jerome.bernard@gmail.com</email>
<timezone>Europe/Paris</timezone>
<organization>Kalixia, SARL.</organization>
</developer>
</developers>

<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
<version>3.4.5.Final</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>
<configuration>
<reportPlugins>
<reportPlugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
</reportPlugin>
<reportPlugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.7.1</version>
</reportPlugin>
<reportPlugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.4.0</version>
</reportPlugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>

</project>
@@ -0,0 +1,4 @@
package com.kalixia.xbee.handler.codec.xbee;

public class XBeeFrameDecoder {
}
28 changes: 28 additions & 0 deletions src/site/site.xml
@@ -0,0 +1,28 @@
<project name="XBee/ZigBee Tools">
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
<version>1.2.1</version>
</skin>

<custom>
<fluidoSkin>
<topBarEnabled>true</topBarEnabled>
<sideBarEnabled>true</sideBarEnabled>
<searchEnabled>true</searchEnabled>
<sourceLineNumbersEnabled>true</sourceLineNumbersEnabled>
<gitHub>
<projectId>kalixia/xbee-tools</projectId>
<ribbonOrientation>right</ribbonOrientation>
<!--<ribbonColor>black</ribbonColor>-->
</gitHub>
<!--<googleSearch>-->
<!--<sitesearch/>-->
<!--</googleSearch>-->
</fluidoSkin>
</custom>

<body>
<menu ref="reports"/>
</body>
</project>

0 comments on commit da316d2

Please sign in to comment.