GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: My generally useful java library I take wherever I go.
Homepage: http://bleu.west.spy.net/~dustin/projects/spyjar/
Clone URL: git://github.com/dustin/spyjar.git
dustin (author)
Sun Apr 06 01:01:08 -0700 2008
commit  ad929ad7fb1c7ed61751252a56cc2d34524a91aa
tree    9408a5cd52f713b4eb0fd213cda466b90720f112
parent  d57f3f7439399a405e4092c64abd4c1169db3bce
spyjar / project.xml
100644 135 lines (115 sloc) 3.179 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?xml version="1.0"?>
 
<!-- Copyright (c) 2005 Dustin Sallings (dustin@spy.net) -->
 
<project>
 
  <pomVersion>3</pomVersion>
  <groupId>spy</groupId>
  <currentVersion>2.4</currentVersion>
  <organization>
    <name>SPY Internetworking</name>
    <url>http://bleu.west.spy.net/~dustin/</url>
  </organization>
  <inceptionYear>1995</inceptionYear>
  <package>net.spy</package>
 
  <artifactId>spy</artifactId>
  <name>spy.jar</name>
  <description>
    Core java classes.
  </description>
 
  <shortDescription>SPY</shortDescription>
 
  <developers>
    <developer>
      <name>Dustin Sallings</name>
      <id>dustin</id>
      <email>dustin@spy.net</email>
      <organization>SPY Internetworking</organization>
    </developer>
  </developers>
 
  <dependencies>
 
    <dependency>
      <groupId>ant</groupId>
      <artifactId>ant</artifactId>
      <version>1.6.3</version>
    </dependency>
 
    <dependency>
      <groupId>spy</groupId>
      <artifactId>maven-git-plugin</artifactId>
      <version>1.0</version>
      <type>plugin</type>
    </dependency>
 
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.2</version>
    </dependency>
 
    <dependency>
      <groupId>jmock</groupId>
      <artifactId>jmock</artifactId>
      <version>1.0.1</version>
    </dependency>
 
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.8</version>
    </dependency>
 
    <dependency>
      <groupId>maven-plugins</groupId>
      <artifactId>maven-cobertura-plugin</artifactId>
      <version>1.0</version>
      <type>plugin</type>
      <url>http://maven-plugins.sourceforge.net/maven-cobertura-plugin/</url>
    </dependency>
 
  </dependencies>
 
  <contributors>
    <contributor>
      <name>Brandon Knitter</name>
      <email>knitterb@blandsite.org</email>
      <url>http://www.blandsite.org/</url>
    </contributor>
    <contributor>
      <name>Scott Lamb</name>
      <email>slamb@slamb.org</email>
      <url>http://www.slamb.org/</url>
    </contributor>
  </contributors>
 
  <versions>
    <version><name>2.4</name></version>
    <version><name>2.3.1</name></version>
    <version><name>2.2.56</name></version>
    <version><name>2.1.145</name></version>
    <version><name>2.0.97</name></version>
    <version><name>1.0.37</name></version>
  </versions>
 
  <build>
    <sourceDirectory>${basedir}/src/java</sourceDirectory>
    <unitTestSourceDirectory>${basedir}/src/test</unitTestSourceDirectory>
    <resources>
      <resource>
        <directory>${maven.src.dir}/java</directory>
        <includes>
          <include>**/*.properties</include>
          <include>**/*.txt</include>
        </includes>
      </resource>
    </resources>
    <unitTest>
      <includes>
        <include>**/*Test.java</include>
      </includes>
      <excludes>
        <!-- Don't try to run the SPTs with junit -->
        <exclude>**/test/db/*.java</exclude>
      </excludes>
    </unitTest>
  </build>
 
  <reports>
    <report>maven-multiproject-plugin</report>
    <report>maven-junit-report-plugin</report>
    <report>maven-cobertura-plugin</report>
    <report>maven-checkstyle-plugin</report>
    <report>maven-javadoc-plugin</report>
    <report>maven-jdepend-plugin</report>
    <report>maven-pmd-plugin</report>
    <report>maven-simian-plugin</report>
    <report>maven-jxr-plugin</report>
  </reports>
 
</project>