blob: 2ad2af63c82e0dc14f3f75b667d4ba745d607da3 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.bsf</groupId>
<artifactId>parent</artifactId>
<version>3.0-beta2</version>
<name>Apache BSF</name>
<description>Apache BSF</description>
<packaging>pom</packaging>
<url>http://jakarta.apache.org/bsf/</url>
<properties>
<bsf.version>3.0-beta2</bsf.version>
</properties>
<issueManagement>
<url>http://issues.apache.org/jira/browse/BSF</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Apache BSF Developer List</name>
<subscribe>bsf-dev-subscribe@jakarta.apache.org</subscribe>
<unsubscribe>bsf-dev-unsubscribe@jakarta.apache.org</unsubscribe>
<post>bsf-dev@jakarta.apache.org</post>
<archive>http://mail-archives.apache.org/mod_mbox/jakarta-bsf-dev/</archive>
</mailingList>
<mailingList>
<name>Apache BSF User List</name>
<subscribe>bsf-user-subscribe@jakarta.apache.org</subscribe>
<unsubscribe>bsf-user-unsubscribe@jakarta.apache.org</unsubscribe>
<post>bsf-user@jakarta.apache.org</post>
<archive>http://mail-archives.apache.org/mod_mbox/jakarta-bsf-user/</archive>
</mailingList>
</mailingLists>
<inceptionYear>1999</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/bsf/trunk/bsf3</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/bsf/trunk/bsf3</developerConnection>
<url>http://svn.apache.org/viewvc/jakarta/bsf/trunk/bsf3/</url>
</scm>
<organization>
<name>Apache Software Foundation</name>
<url>http://www.apache.org/</url>
</organization>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<configuration>
<descriptors>
<descriptor>distribution/bin.xml</descriptor>
<descriptor>distribution/src.xml</descriptor>
</descriptors>
<finalName>bsf-${bsf.version}</finalName>
</configuration>
</plugin>
<!--<plugin>-->
<!--<artifactId>maven-site-plugin</artifactId>-->
<!--<inherited>false</inherited>-->
<!--</plugin>-->
<!---->
<!-- plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<attach>true</attach>
</configuration>
</plugin -->
</plugins>
</build>
<activation>
<property>
<name>release</name>
</property>
</activation>
</profile>
</profiles>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0</version>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.1</version>
<configuration>
<archive>
<manifestEntries>
<Extension-Name>${pom.groupId}</Extension-Name>
<Specification-Title>${pom.artifactId}</Specification-Title>
<Specification-Vendor>Apache Software Foundation</Specification-Vendor>
<Specification-Version>${pom.version}</Specification-Version>
<Implementation-Title>Apache BSF</Implementation-Title>
<Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
<Implementation-Vendor>Apache Software Foundation</Implementation-Vendor>
<Implementation-Version>${pom.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<inherited>false</inherited>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.1</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-5</version>
<inherited>false</inherited>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>apache.rsync</id>
<name>Apache rsync Repository</name>
<url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
</repository>
<snapshotRepository>
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
</snapshotRepository>
</distributionManagement>
<modules>
<module>bsf-api</module>
<module>bsf-engines</module>
<module>bsf-utils</module>
<module>distribution</module>
<module>testing</module>
</modules>
</project>