Author: ivol
Date: Tue Oct 12 15:13:57 2010
New Revision: 158
Log:
AMDATU-108 Added initial maven site generation configuration
Modified:
trunk/application-bundles/dashboard-bundle/pom.xml
trunk/application-bundles/gadget-management/pom.xml
trunk/application-bundles/pom.xml
trunk/example-bundles/course-gadget/pom.xml
trunk/example-bundles/course-service/pom.xml
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/impl/CourseServiceImpl.java
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/impl/ProfileDataProvider.java
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/osgi/Activator.java
trunk/example-bundles/friends-gadget/pom.xml
trunk/example-bundles/pom.xml
trunk/gadget-bundles/login-gadget/pom.xml
trunk/gadget-bundles/pom.xml
trunk/gadget-bundles/sparqlendpoint-gadget/pom.xml
trunk/libraries/amdatu-utilities/pom.xml
trunk/libraries/pom.xml
trunk/platform-bundles/authorization-service/pom.xml
trunk/platform-bundles/cassandra-application/pom.xml
trunk/platform-bundles/cassandra-listener/pom.xml
trunk/platform-bundles/cassandra-persistencemanager/pom.xml
trunk/platform-bundles/config-template-manager/pom.xml
trunk/platform-bundles/filebased-configuration/pom.xml
trunk/platform-bundles/httpcontext/pom.xml
trunk/platform-bundles/loghandler/pom.xml
trunk/platform-bundles/pom.xml
trunk/platform-bundles/profile-service/pom.xml
trunk/platform-bundles/sesame-application/pom.xml
trunk/platform-bundles/shindig-application/pom.xml
trunk/platform-bundles/shindig-application/src/main/java/org/amdatu/platform/shindig/application/persistence/GadgetStoreImpl.java
trunk/platform-bundles/tenant-service/pom.xml
trunk/platform-bundles/useradmin-cassandra-store/pom.xml
trunk/platform-bundles/wink-application/pom.xml
trunk/pom.xml
Modified: trunk/application-bundles/dashboard-bundle/pom.xml
==============================================================================
--- trunk/application-bundles/dashboard-bundle/pom.xml (original)
+++ trunk/application-bundles/dashboard-bundle/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,8 @@
<artifactId>dashboard</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Application - Dashboard</name>
-
+ <description>Dashboard application (gadget container UI)</description>
+
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
Modified: trunk/application-bundles/gadget-management/pom.xml
==============================================================================
--- trunk/application-bundles/gadget-management/pom.xml (original)
+++ trunk/application-bundles/gadget-management/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,8 @@
<artifactId>gadgetmanagement</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Application - Gadget Management</name>
-
+ <description>Provides a service to manage gadgets stored in the gadget
store</description>
+
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
Modified: trunk/application-bundles/pom.xml
==============================================================================
--- trunk/application-bundles/pom.xml (original)
+++ trunk/application-bundles/pom.xml Tue Oct 12 15:13:57 2010
@@ -4,6 +4,8 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.amdatu</groupId>
<artifactId>org.amdatu.application-bundles</artifactId>
+ <name>Amdatu application</name>
+ <description>This module consists of all Amdatu application
bundles</description>
<packaging>pom</packaging>
<parent>
<groupId>org.amdatu</groupId>
Modified: trunk/example-bundles/course-gadget/pom.xml
==============================================================================
--- trunk/example-bundles/course-gadget/pom.xml (original)
+++ trunk/example-bundles/course-gadget/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,7 @@
<artifactId>course-gadget</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Example - Course gadget</name>
-
+ <description>This gadget provides an example gadget to display courses
relevant for a particular student</description>
<dependencies>
<dependency>
<groupId>org.amdatu.application</groupId>
Modified: trunk/example-bundles/course-service/pom.xml
==============================================================================
--- trunk/example-bundles/course-service/pom.xml (original)
+++ trunk/example-bundles/course-service/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>course-service</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Example - Course service</name>
+ <description>Provides an example service to retrieve course
information</description>
<dependencies>
<dependency>
Modified:
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/impl/CourseServiceImpl.java
==============================================================================
---
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/impl/CourseServiceImpl.java
(original)
+++
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/impl/CourseServiceImpl.java
Tue Oct 12 15:13:57 2010
@@ -36,6 +36,7 @@
* Implementation of the course service. The course service is tenant aware
and uses the tenant aware service adapter to
* create tenant aware service dependencies with the person service and
persistence manager.
* @author ivol
+ * @exclude
*/
public class CourseServiceImpl implements CourseService {
// Services injected by the Felix dependency manager
Modified:
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/impl/ProfileDataProvider.java
==============================================================================
---
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/impl/ProfileDataProvider.java
(original)
+++
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/impl/ProfileDataProvider.java
Tue Oct 12 15:13:57 2010
@@ -29,6 +29,7 @@
/**
* This class creates profiles and persons in Cassandra.
* @author ivol
+ * @exclude
*/
public class ProfileDataProvider {
// Service dependencies, injected by the Felix dependency manager
Modified:
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/osgi/Activator.java
==============================================================================
---
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/osgi/Activator.java
(original)
+++
trunk/example-bundles/course-service/src/main/java/org/amdatu/example/course/service/osgi/Activator.java
Tue Oct 12 15:13:57 2010
@@ -80,16 +80,12 @@
.add(createServiceDependency().setService(ConfigurationAdmin.class).setRequired(true)));
// Create and register the course profile data provider service
- // This filter is used to define a service dependency on the
ColumnFamilyAvailable service
- // for the Role ColumnFamily. As a result, our service will depend on
the availability
- // of this ColumnFamily.
- String roleFilter = "(" + ColumnFamilyAvailable.FILTER_NAME +
"=Friend)";
+
manager.add(
createComponent()
.setImplementation(ProfileDataProvider.class)
.add(createServiceDependency().setService(LogService.class).setRequired(true))
.add(createServiceDependency().setService(PersonService.class).setRequired(true))
-
.add(createServiceDependency().setService(ColumnFamilyAvailable.class,
roleFilter).setRequired(true))
.add(createServiceDependency().setService(UserAdmin.class).setRequired(true)));
}
Modified: trunk/example-bundles/friends-gadget/pom.xml
==============================================================================
--- trunk/example-bundles/friends-gadget/pom.xml (original)
+++ trunk/example-bundles/friends-gadget/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>friends-gadget</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Example - Friends gadget</name>
+ <description>Provides an example gadget to display all friends of the user
currently logged in</description>
<dependencies>
<dependency>
Modified: trunk/example-bundles/pom.xml
==============================================================================
--- trunk/example-bundles/pom.xml (original)
+++ trunk/example-bundles/pom.xml Tue Oct 12 15:13:57 2010
@@ -4,6 +4,8 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.amdatu</groupId>
<artifactId>org.amdatu.example-bundles</artifactId>
+ <name>Amdatu examples</name>
+ <description>This module holds several examples</description>
<packaging>pom</packaging>
<parent>
<groupId>org.amdatu</groupId>
Modified: trunk/gadget-bundles/login-gadget/pom.xml
==============================================================================
--- trunk/gadget-bundles/login-gadget/pom.xml (original)
+++ trunk/gadget-bundles/login-gadget/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>login</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Gadget - Login</name>
+ <description>Provides a login gadget</description>
<dependencies>
<dependency>
Modified: trunk/gadget-bundles/pom.xml
==============================================================================
--- trunk/gadget-bundles/pom.xml (original)
+++ trunk/gadget-bundles/pom.xml Tue Oct 12 15:13:57 2010
@@ -4,6 +4,8 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.amdatu</groupId>
<artifactId>org.amdatu.gadget-bundles</artifactId>
+ <name>Amdatu gadgets</name>
+ <description>This module consists of all Amdatu gadgets.</description>
<packaging>pom</packaging>
<parent>
<groupId>org.amdatu</groupId>
Modified: trunk/gadget-bundles/sparqlendpoint-gadget/pom.xml
==============================================================================
--- trunk/gadget-bundles/sparqlendpoint-gadget/pom.xml (original)
+++ trunk/gadget-bundles/sparqlendpoint-gadget/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,8 @@
<artifactId>sparqlendpoint</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Gadget - SPARQL Endpoint</name>
-
+ <description>Provides a gadget to execute SPARQL queries</description>
+
<dependencies>
<dependency>
<groupId>org.amdatu.platform</groupId>
Modified: trunk/libraries/amdatu-utilities/pom.xml
==============================================================================
--- trunk/libraries/amdatu-utilities/pom.xml (original)
+++ trunk/libraries/amdatu-utilities/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,7 @@
<artifactId>amdatu-utilities</artifactId>
<packaging>jar</packaging>
<name>Amdatu Libraries - Utilities</name>
-
+ <description>This component holds several utility classes which should be
embedded by bundles using it</description>
<build>
<finalName>${project.groupId}.${project.artifactId}-${platform.version}</finalName>
</build>
Modified: trunk/libraries/pom.xml
==============================================================================
--- trunk/libraries/pom.xml (original)
+++ trunk/libraries/pom.xml Tue Oct 12 15:13:57 2010
@@ -4,6 +4,8 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.amdatu</groupId>
<artifactId>org.amdatu.libraries</artifactId>
+ <name>Amdatu libraries</name>
+ <description>This module consists of all Amdatu libraries. Amdatu libraries
are a set of utility classes which should be embedded by bundles using
them.</description>
<packaging>pom</packaging>
<parent>
<groupId>org.amdatu</groupId>
Modified: trunk/platform-bundles/authorization-service/pom.xml
==============================================================================
--- trunk/platform-bundles/authorization-service/pom.xml (original)
+++ trunk/platform-bundles/authorization-service/pom.xml Tue Oct 12
15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>authorization</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Authorization Service</name>
+ <description>Provides a service for login and logout
functionality</description>
<dependencies>
<dependency>
Modified: trunk/platform-bundles/cassandra-application/pom.xml
==============================================================================
--- trunk/platform-bundles/cassandra-application/pom.xml (original)
+++ trunk/platform-bundles/cassandra-application/pom.xml Tue Oct 12
15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>cassandra-application</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Apache Cassandra Application</name>
+ <description>This bundle embeds the Apache Cassandra libraries and exports
the Cassandra Daemon as an OSGi service</description>
<properties>
<cassandra.lib.filename>cassandra-${cassandra.version}</cassandra.lib.filename>
Modified: trunk/platform-bundles/cassandra-listener/pom.xml
==============================================================================
--- trunk/platform-bundles/cassandra-listener/pom.xml (original)
+++ trunk/platform-bundles/cassandra-listener/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,7 @@
<artifactId>cassandra-listener</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Apache Cassandra Listener</name>
-
+ <description>The Cassandra listener uses the whiteboard pattern to listen to
services that register ColumnFamily's and keyspaces.</description>
<dependencies>
<dependency>
<groupId>org.amdatu.platform</groupId>
Modified: trunk/platform-bundles/cassandra-persistencemanager/pom.xml
==============================================================================
--- trunk/platform-bundles/cassandra-persistencemanager/pom.xml (original)
+++ trunk/platform-bundles/cassandra-persistencemanager/pom.xml Tue Oct 12
15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>cassandra-persistencemanager</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Apache Cassandra Persistence Manager</name>
+ <description>Provides a Persistence Manager to persist objects in
Cassandra</description>
<dependencies>
<dependency>
Modified: trunk/platform-bundles/config-template-manager/pom.xml
==============================================================================
--- trunk/platform-bundles/config-template-manager/pom.xml (original)
+++ trunk/platform-bundles/config-template-manager/pom.xml Tue Oct 12
15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>config-template-manager</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Configuration Template Manager</name>
+ <description>The template manager can be used to replace configurable
properties in any file with configuration properties provided by
ConfigAdmin</description>
<dependencies>
<dependency>
Modified: trunk/platform-bundles/filebased-configuration/pom.xml
==============================================================================
--- trunk/platform-bundles/filebased-configuration/pom.xml (original)
+++ trunk/platform-bundles/filebased-configuration/pom.xml Tue Oct 12
15:13:57 2010
@@ -12,8 +12,9 @@
<groupId>org.amdatu.platform</groupId>
<artifactId>filebased-configuration</artifactId>
<packaging>bundle</packaging>
- <name>Amdatu Support - File Based Configuration</name>
-
+ <name>Amdatu Platform - File Based Configuration</name>
+ <description>This bundle contains the configuration files of all Amdatu
bundles and is repsonsible for registration of these configs in
ConfigAdmin.</description>
+
<build>
<finalName>${groupId}.${artifactId}-${platform.version}</finalName>
<resources>
Modified: trunk/platform-bundles/httpcontext/pom.xml
==============================================================================
--- trunk/platform-bundles/httpcontext/pom.xml (original)
+++ trunk/platform-bundles/httpcontext/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>httpcontext</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - HTTP Context Service</name>
+ <description>Provides a HTTPContext implementation</description>
<dependencies>
<!-- Include JSTL taglibrary in this bundle so that it is embedded in this
shared http context -->
Modified: trunk/platform-bundles/loghandler/pom.xml
==============================================================================
--- trunk/platform-bundles/loghandler/pom.xml (original)
+++ trunk/platform-bundles/loghandler/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,8 @@
<artifactId>loghandler</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Log Handler</name>
-
+ <description>The log handler provides several hooks to dispatch log entries
from other logging frameworks (i.e. JDK logging) to the OSGi
LogService</description>
+
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
Modified: trunk/platform-bundles/pom.xml
==============================================================================
--- trunk/platform-bundles/pom.xml (original)
+++ trunk/platform-bundles/pom.xml Tue Oct 12 15:13:57 2010
@@ -5,6 +5,8 @@
<groupId>org.amdatu</groupId>
<artifactId>org.amdatu.platform-bundles</artifactId>
<packaging>pom</packaging>
+ <name>Amdatu platform</name>
+ <description>This module consists of all bundles that are part of the Amdatu
platform.</description>
<parent>
<groupId>org.amdatu</groupId>
<artifactId>amdatu</artifactId>
@@ -25,8 +27,8 @@
<module>tenant-service</module>
<module>useradmin-cassandra-store</module>
<module>wink-application</module>
- <module>filebased-configuration</module>
- </modules>
+ <module>filebased-configuration</module>
+ </modules>
<build>
<pluginManagement>
Modified: trunk/platform-bundles/profile-service/pom.xml
==============================================================================
--- trunk/platform-bundles/profile-service/pom.xml (original)
+++ trunk/platform-bundles/profile-service/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>profile-service</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Profile Service</name>
+ <description>Provides a profile service on top of the OpenSocial
services</description>
<dependencies>
<dependency>
Modified: trunk/platform-bundles/sesame-application/pom.xml
==============================================================================
--- trunk/platform-bundles/sesame-application/pom.xml (original)
+++ trunk/platform-bundles/sesame-application/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,8 @@
<artifactId>sesame-application</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Sesame Application</name>
-
+ <description>This bundle includes the OpenRDF Sesame libraries and exports
its API as an OSGi service</description>
+
<dependencies>
<dependency>
<groupId>org.openrdf.sesame</groupId>
Modified: trunk/platform-bundles/shindig-application/pom.xml
==============================================================================
--- trunk/platform-bundles/shindig-application/pom.xml (original)
+++ trunk/platform-bundles/shindig-application/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,9 +11,9 @@
<artifactId>shindig-application</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Apache Shindig Application</name>
-
- <dependencies>
+ <description>This bundle includes the Apache Shindig libraries and exports
the opensocial API as OSGi services</description>
+ <dependencies>
<!-- Shindig Dependencies -->
<dependency>
<groupId>org.apache.shindig</groupId>
Modified:
trunk/platform-bundles/shindig-application/src/main/java/org/amdatu/platform/shindig/application/persistence/GadgetStoreImpl.java
==============================================================================
---
trunk/platform-bundles/shindig-application/src/main/java/org/amdatu/platform/shindig/application/persistence/GadgetStoreImpl.java
(original)
+++
trunk/platform-bundles/shindig-application/src/main/java/org/amdatu/platform/shindig/application/persistence/GadgetStoreImpl.java
Tue Oct 12 15:13:57 2010
@@ -132,6 +132,7 @@
m_pm.setStringValue(CF_GADGET, rowKey, SC_BASIC, C_CONSUMERKEY,
gadget.getConsumerPrivateKey());
m_pm.setStringValue(CF_GADGET, rowKey, SC_BASIC, C_CONSUMERSECRET,
gadget.getConsumerPublicKey());
m_pm.setStringValue(CF_GADGET, rowKey, SC_BASIC, C_KEYTYPE,
gadget.getKeyType());
+ return true;
} catch (CassandraException e) {
m_logService.log(LogService.LOG_ERROR, "Could not persist gadget
definition", e);
} finally {
Modified: trunk/platform-bundles/tenant-service/pom.xml
==============================================================================
--- trunk/platform-bundles/tenant-service/pom.xml (original)
+++ trunk/platform-bundles/tenant-service/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,8 @@
<artifactId>tenant-service</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Tenant Service</name>
-
+ <description>This bundle provides a tenant management service with tenant
CRUD operations</description>
+
<dependencies>
<dependency>
<groupId>org.amdatu.platform</groupId>
Modified: trunk/platform-bundles/useradmin-cassandra-store/pom.xml
==============================================================================
--- trunk/platform-bundles/useradmin-cassandra-store/pom.xml (original)
+++ trunk/platform-bundles/useradmin-cassandra-store/pom.xml Tue Oct 12
15:13:57 2010
@@ -11,6 +11,7 @@
<artifactId>useradmin-cassandra-store</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - User Admin Cassandra Store</name>
+ <description>Provides an implementation of the Pax UserAdmin
store</description>
<dependencies>
<dependency>
Modified: trunk/platform-bundles/wink-application/pom.xml
==============================================================================
--- trunk/platform-bundles/wink-application/pom.xml (original)
+++ trunk/platform-bundles/wink-application/pom.xml Tue Oct 12 15:13:57 2010
@@ -11,7 +11,8 @@
<artifactId>wink-application</artifactId>
<packaging>bundle</packaging>
<name>Amdatu Platform - Apache Wink Application</name>
-
+ <description>Embeds the Apache Wink libraries and provides the necessary
services to publish REST services from OSGi services</description>
+
<dependencies>
<dependency>
<groupId>org.apache.wink</groupId>
Modified: trunk/pom.xml
==============================================================================
--- trunk/pom.xml (original)
+++ trunk/pom.xml Tue Oct 12 15:13:57 2010
@@ -24,14 +24,38 @@
<site>
<name>Amdatu Sites</name>
<id>amdatu.sites</id>
- <url>${repository.url}/sites/${project.version}</url>
+ <url>${repository.url}/sites</url>
</site>
</distributionManagement>
<issueManagement>
<system>JIRA</system>
<url>http://jira.amdatu.org/jira</url>
- </issueManagement>
+ </issueManagement>
+
+ <mailingLists>
+ <mailingList>
+ <name>Amdatu users</name>
+
<subscribe>http://lists.amdatu.org/mailman/listinfo/amdatu-users</subscribe>
+
<unsubscribe>http://lists.amdatu.org/mailman/listinfo/amdatu-users</unsubscribe>
+ <post>amdatu-users at amdatu.org</post>
+ <archive>http://lists.amdatu.org/pipermail/amdatu-users</archive>
+ </mailingList>
+ <mailingList>
+ <name>Amdatu developers</name>
+
<subscribe>http://lists.amdatu.org/mailman/listinfo/amdatu-developers</subscribe>
+
<unsubscribe>http://lists.amdatu.org/mailman/listinfo/amdatu-developers</unsubscribe>
+ <post>amdatu-developers at amdatu.org</post>
+ <archive>http://lists.amdatu.org/pipermail/amdatu-developers</archive>
+ </mailingList>
+ <mailingList>
+ <name>Subversion commits</name>
+
<subscribe>http://lists.amdatu.org/mailman/listinfo/amdatu-commits</subscribe>
+
<unsubscribe>http://lists.amdatu.org/mailman/listinfo/amdatu-commits</unsubscribe>
+ <post>amdatu-commits at amdatu.org</post>
+ <archive>http://lists.amdatu.org/pipermail/amdatu-commits</archive>
+ </mailingList>
+ </mailingLists>
<licenses>
<license>
@@ -42,6 +66,27 @@
</license>
</licenses>
+ <scm>
+ <connection>scm:svn:http://subversion.amdatu.org/svn/amdatu</connection>
+
<developerConnection>scm:svn:http://subversion.amdatu.org/svn/amdatu</developerConnection>
+ <url>http://subversion.amdatu.org/viewvc/amdatu</url>
+ </scm>
+
+ <ciManagement>
+ <system>bamboo</system>
+ <url>http://bamboo.amdatu.org/bamboo/</url>
+ <notifiers>
+ <notifier>
+ <type>mail</type>
+ <sendOnError>true</sendOnError>
+ <sendOnFailure>true</sendOnFailure>
+ <sendOnSuccess>false</sendOnSuccess>
+ <sendOnWarning>false</sendOnWarning>
+ <configuration><address>bamboo at amdatu.org</address></configuration>
+ </notifier>
+ </notifiers>
+ </ciManagement>
+
<developers>
<developer>
<id>ivol</id>
@@ -52,8 +97,37 @@
<roles>
<role>Developer</role>
</roles>
- <timezone>+1</timezone>
</developer>
+ <developer>
+ <id>angelos</id>
+ <name>Angelo van der Sijpt</name>
+ <email>angelo.vandersijpt at luminis.eu</email>
+ <organization>Luminis</organization>
+ <organizationUrl>http://luminis.eu</organizationUrl>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <id>marcelo</id>
+ <name>Marcel Offermans</name>
+ <email>marcel.offermans at luminis.eu</email>
+ <organization>Luminis</organization>
+ <organizationUrl>http://luminis.eu</organizationUrl>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <id>bramk</id>
+ <name>Bram de Kruijff</name>
+ <email>bram.dekruijff at gxsoftware.com</email>
+ <organization>GX Software</organization>
+ <organizationUrl>http://gxsoftware.com</organizationUrl>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ </developer>
</developers>
<!-- List op prerequisites -->
@@ -137,13 +211,11 @@
<name>OpenRDF</name>
<url>http://repo.aduna-software.org/maven2/releases</url>
</repository>
-
- <repository>
- <id>repo1</id>
- <name>repo1</name>
- <url>http://repo1.maven.org/maven2</url>
+ <repository>
+ <id>repo1</id>
+ <name>repo1</name>
+ <url>http://repo1.maven.org/maven2</url>
</repository>
-
</repositories>
<dependencies>
@@ -704,6 +776,11 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>2.1.1</version>
+ </plugin>
</plugins>
@@ -731,6 +808,37 @@
</pluginManagement>
</build>
+ <reporting>
+ <outputDirectory>target/site</outputDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.2</version>
+ <reportSets>
+ <reportSet>
+ <inherited>false</inherited>
+ <reports>
+ <report>cim</report>
+ <!-- <report>dependencies</report> -->
+ <!-- <report>dependency-convergence</report>-->
+ <report>dependency-management</report>
+ <report>index</report>
+ <report>issue-tracking</report>
+ <report>license</report>
+ <report>mailing-list</report>
+ <report>plugin-management</report>
+ <report>plugins</report>
+ <report>project-team</report>
+ <report>scm</report>
+ <report>summary</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
+
<profiles>
<profile>
<!-- Profile for developers -->