73 lines
2.3 KiB
XML
73 lines
2.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright 2007 The Apache Software Foundation
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
-->
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId> portlet-api </artifactId>
|
|
<name> Java Portlet API </name>
|
|
<groupId>javax.portlet</groupId>
|
|
<version> 1.0 </version>
|
|
<packaging> jar </packaging>
|
|
|
|
<build>
|
|
<sourceDirectory>${basedir}/src/java</sourceDirectory>
|
|
<testSourceDirectory>${basedir}/src/test</testSourceDirectory>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/java</directory>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
</excludes>
|
|
</resource>
|
|
</resources>
|
|
|
|
<testResources>
|
|
<testResource>
|
|
<directory>${basedir}/src/test</directory>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
</excludes>
|
|
</testResource>
|
|
<testResource>
|
|
<directory>${basedir}/src/java</directory>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
<!--
|
|
<exclude>**/JETSPEED-INF/**</exclude>
|
|
-->
|
|
</excludes>
|
|
</testResource>
|
|
<testResource>
|
|
<directory>../etc/log4j</directory>
|
|
<includes>
|
|
<include>*.properties</include>
|
|
</includes>
|
|
</testResource>
|
|
<testResource>
|
|
<directory>../etc/db-ojb</directory>
|
|
<includes>
|
|
<include>*.xml</include>
|
|
<include>*.dtd</include>
|
|
<include>*.properties</include>
|
|
</includes>
|
|
</testResource>
|
|
</testResources>
|
|
</build>
|
|
|
|
</project>
|