dream-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.objectweb.dream.dreamcore</groupId>
<artifactId>dream-core</artifactId>
<version>2.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-->
<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>
<parent>
<groupId>org.objectweb.dream.dreamcore</groupId>
<artifactId>parent</artifactId>
<version>3</version>
</parent>
<groupId>org.objectweb.dream.dreamcore</groupId>
<artifactId>dream-core</artifactId>
<name>Dream Core</name>
<version>2.2</version>
<organization>
<name>OW2 Consortium</name>
<url>http://www.ow2.org/</url>
</organization>
<issueManagement>
<system>gforge</system>
<url>http://forge.objectweb.org/tracker/?group_id=118</url>
</issueManagement>
<url>http://dream.objectweb.org</url>
<licenses>
<license>
<name>LGPL</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
</license>
</licenses>
<description>
The dream-core project aims at defining abstractions commonly used
in communication middleware (e.g. messages, activities). It also
defines some components to increase performance (e.g. cache and pool
mechanism).
This version adds an Xml codec based on XStream and
cache components based on the Perseus library.
</description>
<scm>
<connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/dream/tags/parent-3/dream-core</connection>
<developerConnection>scm:svn:svn+ssh://rnaudin@svn.forge.objectweb.org/svnroot/dream/tags/parent-3/dream-core</developerConnection>
<url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/dream/tags/parent-3/dream-core</url>
</scm>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<mode>beta</mode>
<url>${pom.url}</url>
<key>value</key>
<Implementation-Vendor>
INRIA Rhone-Alpes
</Implementation-Vendor>
<Implementation-Version>
${pom.version}
</Implementation-Version>
<Implementation-Title>${pom.name}</Implementation-Title>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.objectweb.dream.dreamadl</groupId>
<artifactId>maven-check-adl-plugin</artifactId>
<version>2.2</version>
<configuration>
<adlList>${basedir}/src/main/config/adlList.txt</adlList>
</configuration>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.sf.alchim</groupId>
<artifactId>spoon-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<cfg>${basedir}/src/main/config/spoon.cfg.xml</cfg>
</configuration>
<executions>
<execution>
<goals>
<goal>recompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version>
<configuration>
<includes>
<include>
**/${test.inclusion.filter}/Test*.java,**/${test.inclusion.filter}/*Test.java
</include>
</includes>
<systemProperties>
<property>
<name>fractal.provider</name>
<value>org.objectweb.fractal.julia.Julia</value>
</property>
<property>
<name>julia.config</name>
<value>
julia-dream-bundled.cfg,julia-dream-activities-bundled.cfg
</value>
</property>
</systemProperties>
</configuration>
</plugin>
<!-- Source packaging -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<docfilessubdirs>true</docfilessubdirs>
<excludedocfilessubdir>.svn</excludedocfilessubdir>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<!--value = conform | perf-->
<test.inclusion.filter>conform</test.inclusion.filter>
</properties>
<profiles>
<profile>
<id>testperf</id>
<properties>
<test.inclusion.filter>perf</test.inclusion.filter>
</properties>
<build>
<defaultGoal>test</defaultGoal>
</build>
</profile>
<profile>
<id>testall</id>
<properties>
<test.inclusion.filter />
</properties>
</profile>
</profiles>
<dependencies>
<!-- Fractal annotation processor -->
<dependency>
<groupId>org.objectweb.dream.dreamannotation</groupId>
<artifactId>dream-annotation</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>org.objectweb.fractal.fraclet.annotation</groupId>
<artifactId>fractal-spoonlet</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>org.objectweb.fractal</groupId>
<artifactId>fractal-api</artifactId>
<version>2.0.2</version>
</dependency>
<!-- Fractal implementation -->
<dependency>
<groupId>org.objectweb.fractal.julia</groupId>
<artifactId>julia-runtime</artifactId>
<version>2.5.2</version>
</dependency>
<dependency>
<groupId>org.objectweb.fractal.julia</groupId>
<artifactId>julia-asm</artifactId>
<version>2.5.2</version>
</dependency>
<dependency>
<groupId>org.objectweb.fractal.julia</groupId>
<artifactId>julia-mixins</artifactId>
<version>2.5.2</version>
</dependency>
<!-- logging tool -->
<dependency>
<groupId>org.objectweb.monolog</groupId>
<artifactId>monolog</artifactId>
<version>1.8</version>
</dependency>
<!-- XML codec -->
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.2.2</version>
</dependency>
<!-- SCOPE TEST -->
<dependency>
<groupId>org.objectweb.dream.dreamadl</groupId>
<artifactId>dream-adl</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.objectweb.fractal.fractaladl</groupId>
<artifactId>fractal-adl</artifactId>
<version>2.2</version>
<exclusions>
<exclusion>
<groupId>org.objectweb.fractal.julia</groupId>
<artifactId>julia-asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.objectweb.fractal.julia</groupId>
<artifactId>julia-mixins</artifactId>
</exclusion>
<exclusion>
<groupId>org.objectweb.fractal.julia</groupId>
<artifactId>julia-runtime</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>2.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>
src/main/config/dream_checks.xml
</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<effort>Max</effort>
<xmlOutput>false</xmlOutput>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
</configuration>
</plugin>
</plugins>
</reporting>
</project>