File: project.xml

package info (click to toggle)
wss4j 1.5.8%2Bsvntag-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,680 kB
  • sloc: java: 24,685; xml: 3,284; jsp: 794; sh: 85; makefile: 24
file content (209 lines) | stat: -rw-r--r-- 6,920 bytes parent folder | download | duplicates (2)
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?xml version="1.0"?>

<project>

  <!-- the version of maven's project object model -->
  <pomVersion>3</pomVersion>
  
  <!-- a unique name for this project -->
  <id>wss4j</id>
  
  <!-- a short but descriptive name for the project -->
  <name>Apache WSS4J</name>
  
  <!-- The version of the project under development, e.g.
       1.1, 1.2, 2.0-SNAPSHOT -->
  <currentVersion>1.5</currentVersion>
  
  <!-- details about the organization that 'owns' the project -->
  <organization>
    <name>Apache Web Services</name>
    <url>http://ws.apache.org/</url>
    <logo>http://ws.apache.org/images/project-logo.jpg</logo>
  </organization>
  
  <!-- the year the project started -->
  <inceptionYear>2004</inceptionYear>
  <package>org.apache.ws</package>
  <logo></logo>
  <description>
    Apache WSS4J is an implementation of the Web Services Security (WS-Security) being developed at 
    OASIS Web Services Security TC. WSS4J is a primarily a Java library that can be used to sign and 
    verify SOAP Messages with WS-Security information. WSS4J will use Apache Axis and Apache XML-Security 
    projects and will be interoperable with JAX-RPC based server/clients and .NET server/clients. 
  </description>
  <!-- a short description of what the project does -->
  <shortDescription>
    WS-Security implementation for Apache Axis
  </shortDescription>

  <!-- the project home page -->
  <url>http://ws.apache.org/wss4j/</url>
  <issueTrackingUrl>http://issues.apache.org/jira/browse/WSS</issueTrackingUrl>
  <siteAddress>ws.apache.org</siteAddress>
  <siteDirectory>/wss4j/</siteDirectory>
  <distributionSite>www.apache.org</distributionSite>
  <distributionDirectory>//dyn/closer.cgi/ws/wss4j/</distributionDirectory>

  <!-- the version control repository and http url for online access
       the connection element has the form:
       scm:<system>:<system specific connection string> -->
  <repository>
    <connection>scm:svn:http://svn.apache.org:repos/asf/webservices:wss4j/trunk</connection>
    <developerConnection>scm:svn:http://svn.apache.org:repos/asf/webservices:wss4j/trunk</developerConnection>
    <url>http://svn.apache.org/viewcvs.cgi/webservices/wss4j/trunk?root=Apache-SVN</url>
  </repository>

  <!-- any mailing lists for the project -->
    <mailingLists>
        <mailingList>
            <name>WSS4J Developer List</name>
            <subscribe>wss4j-dev-subscribe@ws.apache.org</subscribe>
            <unsubscribe>wss4j-dev-unsubscribe@ws.apache.org</unsubscribe>
            <archive>http://mail-archives.apache.org/mod_mbox/ws-wss4j-dev/</archive>
        </mailingList>
    </mailingLists>
  
  <!-- who the developers are for the project -->
  <developers>
        <developer>
            <name>Davanum Srinivas</name>
            <id>dims</id>
            <email>dims@yahoo.com</email>
            <organization></organization>
        </developer>
        <developer>
            <name>Werner Dittmann</name>
            <id>werner</id>
            <email>werner@apache.org</email>
            <organization></organization>
        </developer>
        <developer>
            <name>Ias</name>
            <id>ias</id>
            <email>ias@apache.org</email>
            <organization></organization>
        </developer>
        <developer>
            <name>Ruchith Fernando</name>
            <id>ruchithf</id>
            <email>ruchithf@apache.org</email>
            <organization></organization>
        </developer>
  </developers>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
  
  <!-- build information for the project -->
  <build>
    <nagEmailAddress>wss4j-dev@ws.apache.org</nagEmailAddress>
    <sourceDirectory>src</sourceDirectory>
    <unitTestSourceDirectory>test</unitTestSourceDirectory>

    <unitTest>
      <includes>
        <include>**/*PackageTests*.java</include>
      </includes>
      <excludes>
          <exclude>**/wssec/PackageTests.java</exclude>
          <exclude>**/interop/PackageTests.java</exclude>
          <exclude>**/TestScenario7.java</exclude>
      </excludes>
    </unitTest>

    <resources>
      <resource>
        <directory>src</directory>
        <includes>
          <include>**/*.properties</include>
        </includes>
      </resource>
    </resources>
  </build>

    <!-- ============ -->
    <!-- Dependencies -->
    <!-- ============ -->

    <dependencies>

        <!-- Module Dependencies -->
        <!--
        <dependency>
            <groupId>axis</groupId>
            <artifactId>axis</artifactId>
            <version>SNAPSHOT</version>
            <properties>
                <module>true</module>
            </properties>
        </dependency>
        <dependency>
            <groupId>axis</groupId>
            <artifactId>commons-discovery</artifactId>
            <version>SNAPSHOT</version>
            <properties>
                <module>true</module>
            </properties>
        </dependency>
        <dependency>
            <groupId>axis</groupId>
            <artifactId>commons-logging</artifactId>
            <version>SNAPSHOT</version>
            <properties>
                <module>true</module>
            </properties>
        </dependency>
        <dependency>
            <groupId>axis</groupId>
            <artifactId>jaxrpc</artifactId>
            <version>SNAPSHOT</version>
            <properties>
                <module>true</module>
            </properties>
        </dependency>
        <dependency>
            <groupId>axis</groupId>
            <artifactId>saaj</artifactId>
            <version>SNAPSHOT</version>
            <properties>
                <module>true</module>
            </properties>
        </dependency>
        <dependency>
            <groupId>axis</groupId>
            <artifactId>wsdl4j</artifactId>
            <version>SNAPSHOT</version>
            <properties>
                <module>true</module>
            </properties>
        </dependency>
        -->
    </dependencies>

    <!-- ======= -->
    <!-- Reports -->
    <!-- ======= -->

    <reports>
        <report>maven-license-plugin</report>
        <report>maven-checkstyle-plugin</report>
        <report>maven-pmd-plugin</report>
        <report>maven-jdepend-plugin</report>
        <!--<report>maven-changelog-plugin</report> -->
        <!-- <report>maven-statcvs-plugin</report> -->
        <!-- <report>maven-file-activity-plugin</report> -->
        <!-- <report>maven-developer-activity-plugin</report> -->
        <report>maven-jxr-plugin</report>
        <report>maven-javadoc-plugin</report>
        <!-- <report>maven-junit-report-plugin</report> -->
        <!-- <report>maven-clover-plugin</report> -->
    </reports>
    
</project>