Skip to content

Commit 06cb763

Browse files
author
unknown
committed
yajsw + jamod
1 parent 01d31d8 commit 06cb763

File tree

96 files changed

+12854
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+12854
-0
lines changed

jamod/pom.xml

+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>net.wimpi.modbus</groupId>
6+
<artifactId>jamod</artifactId>
7+
<packaging>jar</packaging>
8+
<version>1.2-SNAPSHOT</version>
9+
<name>jamod</name>
10+
<url>http://jamod.sourceforge.net</url>
11+
<description>
12+
jamod is an object oriented implementation of the Modbus protocol, realized 100% in Java. It allows to quickly realize master and slave applications in various transport flavors (IP and serial).
13+
</description>
14+
15+
<licenses>
16+
<license>
17+
<name>Apache 2 Style License</name>
18+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
19+
<distribution>repo</distribution>
20+
<comments>A business-friendly OSS license</comments>
21+
</license>
22+
</licenses>
23+
24+
<properties>
25+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26+
</properties>
27+
28+
<dependencies>
29+
<dependency>
30+
<groupId>junit</groupId>
31+
<artifactId>junit</artifactId>
32+
<version>3.8.1</version>
33+
<scope>test</scope>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.jboss.netty</groupId>
37+
<artifactId>netty</artifactId>
38+
<version>3.2.6.Final</version>
39+
</dependency>
40+
</dependencies>
41+
42+
<build>
43+
<plugins>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-site-plugin</artifactId>
47+
<version>2.1</version>
48+
</plugin>
49+
<plugin>
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-javadoc-plugin</artifactId>
52+
<version>2.6.1</version>
53+
<configuration>
54+
<show>private</show>
55+
<nohelp>true</nohelp>
56+
</configuration>
57+
</plugin>
58+
</plugins>
59+
</build>
60+
61+
<distributionManagement>
62+
<site>
63+
<id>jamod.sf.net</id>
64+
<url>scp://shell.sourceforge.net/home/groups/j/ja/jamod/htdocs</url>
65+
</site>
66+
</distributionManagement>
67+
68+
<reporting>
69+
<plugins>
70+
<plugin>
71+
<groupId>org.apache.maven.plugins</groupId>
72+
<artifactId>maven-project-info-reports-plugin</artifactId>
73+
<version>2.1.2</version>
74+
<reportSets>
75+
<reportSet>
76+
<reports>
77+
<report>dependencies</report>
78+
<report>project-team</report>
79+
<report>mailing-list</report>
80+
<report>issue-tracking</report>
81+
<report>license</report>
82+
<report>scm</report>
83+
</reports>
84+
</reportSet>
85+
</reportSets>
86+
</plugin>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-javadoc-plugin</artifactId>
90+
<version>2.6.1</version>
91+
<configuration>
92+
<show>public</show>
93+
</configuration>
94+
</plugin>
95+
</plugins>
96+
</reporting>
97+
98+
<issueManagement>
99+
<system>Sourceforge Bug Tracker</system>
100+
<url>http://sourceforge.net/tracker/?group_id=48413&amp;atid=452989</url>
101+
</issueManagement>
102+
103+
<scm>
104+
<connection>scm:svn:https://jamod.svn.sourceforge.net/svnroot/jamod/trunk</connection>
105+
<developerConnection>scm:svn:https://jamod.svn.sourceforge.net/svnroot/jamod/trunk</developerConnection>
106+
<url>http://jamod.svn.sourceforge.net/viewvc/jamod/</url>
107+
</scm>
108+
109+
<mailingLists>
110+
<mailingList>
111+
<name>jamod users mailing list</name>
112+
<subscribe>[email protected]</subscribe>
113+
<unsubscribe>[email protected]</unsubscribe>
114+
<post>[email protected]</post>
115+
<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=jamod-users</archive>
116+
</mailingList>
117+
<mailingList>
118+
<name>jamod development mailing list</name>
119+
<subscribe>[email protected]</subscribe>
120+
<unsubscribe>[email protected]</unsubscribe>
121+
<post>[email protected]</post>
122+
<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=jamod-devel</archive>
123+
</mailingList>
124+
</mailingLists>
125+
126+
<developers>
127+
<developer>
128+
<id>wimpi</id>
129+
<name>Dieter Wimberger</name>
130+
<email>wimpi at users.sourceforge.net</email>
131+
<roles>
132+
<role>Project Manager</role>
133+
<role>Architect</role>
134+
<role>Developer</role>
135+
</roles>
136+
<timezone>-6</timezone>
137+
</developer>
138+
<developer>
139+
<id>jdcharlton</id>
140+
<name>John Charlton</name>
141+
<email>jdcharlton at users.sourceforge.net</email>
142+
<roles>
143+
<role>Developer</role>
144+
</roles>
145+
<timezone>-5</timezone>
146+
</developer>
147+
</developers>
148+
149+
<contributors>
150+
<contributor>
151+
<name>Markus Kuespert</name>
152+
</contributor>
153+
<contributor>
154+
<name>Matthew Lohbihler</name>
155+
</contributor>
156+
<contributor>
157+
<name>Shane Harrison</name>
158+
</contributor>
159+
</contributors>
160+
</project>

0 commit comments

Comments
 (0)