Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
frascati
frascati
Commits
a60ac757
Commit
a60ac757
authored
Aug 19, 2010
by
Christophe Demarey
Browse files
[maven-release-plugin] prepare release frascati/frascati-1.3
parent
f89dfc60
Changes
123
Expand all
Hide whitespace changes
Inline
Side-by-side
examples/verify-mail/pom.xml
View file @
a60ac757
...
...
@@ -30,7 +30,7 @@
<parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
ws-parent
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<groupId>
org.ow2.frascati.examples
</groupId>
...
...
examples/weather/pom.xml
View file @
a60ac757
...
...
@@ -32,7 +32,7 @@
<parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
ws-parent
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<groupId>
org.ow2.frascati.examples
</groupId>
...
...
examples/ws-parent/pom.xml
View file @
a60ac757
<?xml version="1.0"?>
<!--
* OW2 FraSCAti Examples: Parent module for Web Services
*
* Copyright (c) 2009-2010 INRIA, University of Lille 1
*
* 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
*
* Contact: frascati@ow2.org
*
* Author: Nicolas Dolet
*
* Contributor(s): Philippe Merle
-->
<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.ow2.frascati.examples
</groupId>
<artifactId>
ws-parent
</artifactId>
<packaging>
pom
</packaging>
<name>
OW2 FraSCAti Examples: Web Service Examples
</name>
<parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
parent
</artifactId>
<version>
1.3-SNAPSHOT
</version>
</parent>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>
org.apache.cxf
</groupId>
<artifactId>
cxf-codegen-plugin
</artifactId>
<version>
${cxf.version}
</version>
<executions>
<execution>
<id>
generate-sources
</id>
<phase>
generate-sources
</phase>
<configuration>
<sourceRoot>
${basedir}/target/generated/src/main/java
</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>
${wsdl.file}
</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>
wsdl2java
</goal>
</goals>
</execution>
<?xml version="1.0"?>
<!--
* OW2 FraSCAti Examples: Parent module for Web Services
*
* Copyright (c) 2009-2010 INRIA, University of Lille 1
*
* 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
*
* Contact: frascati@ow2.org
*
* Author: Nicolas Dolet
*
* Contributor(s): Philippe Merle
-->
<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.ow2.frascati.examples
</groupId>
<artifactId>
ws-parent
</artifactId>
<packaging>
pom
</packaging>
<name>
OW2 FraSCAti Examples: Web Service Examples
</name>
<parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
parent
</artifactId>
<version>
1.3
</version>
</parent>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>
org.apache.cxf
</groupId>
<artifactId>
cxf-codegen-plugin
</artifactId>
<version>
${cxf.version}
</version>
<executions>
<execution>
<id>
generate-sources
</id>
<phase>
generate-sources
</phase>
<configuration>
<sourceRoot>
${basedir}/target/generated/src/main/java
</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>
${wsdl.file}
</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>
wsdl2java
</goal>
</goals>
</execution>
</executions>
<!-- Dependency needed to avoid org.apache.xerces.impl.dv.DVFactoryException, CXF issue -->
<!-- Dependency needed to avoid org.apache.xerces.impl.dv.DVFactoryException, CXF issue -->
<dependencies>
<dependency>
<groupId>
xerces
</groupId>
...
...
@@ -74,20 +73,20 @@
<scope>
compile
</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement
></dependencyManagement>
<dependencies>
<!-- OW2 FraSCAti WS Binding. -->
<dependency>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-binding-ws
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependencies>
</project>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement
/>
<dependencies>
<!-- OW2 FraSCAti WS Binding. -->
<dependency>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-binding-ws
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependencies>
</project>
explorer/api/pom.xml
View file @
a60ac757
...
...
@@ -27,7 +27,7 @@
<parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-explorer
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<groupId>
org.ow2.frascati
</groupId>
...
...
explorer/core/pom.xml
View file @
a60ac757
...
...
@@ -27,7 +27,7 @@
<parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-explorer
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<groupId>
org.ow2.frascati
</groupId>
...
...
explorer/fscript-plugin/pom.xml
View file @
a60ac757
...
...
@@ -25,13 +25,13 @@
<packaging>
jar
</packaging>
<name>
OW2 FraSCAti Explorer FScript Plugin
</name>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
<inceptionYear>
2009
</inceptionYear>
<parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-explorer
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<!-- ============= -->
...
...
explorer/pom.xml
View file @
a60ac757
...
...
@@ -34,7 +34,7 @@
<parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
parent
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<!-- ============= -->
...
...
frascati/maven-plugins/frascati-compiler/pom.xml
View file @
a60ac757
...
...
@@ -29,7 +29,7 @@
<parent>
<groupId>
org.ow2.frascati.mojo
</groupId>
<artifactId>
maven-plugins-parent
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<groupId>
org.ow2.frascati.mojo
</groupId>
...
...
frascati/maven-plugins/frascati-contribution/pom.xml
View file @
a60ac757
...
...
@@ -29,7 +29,7 @@
<parent>
<groupId>
org.ow2.frascati.mojo
</groupId>
<artifactId>
maven-plugins-parent
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<groupId>
org.ow2.frascati.mojo
</groupId>
...
...
frascati/maven-plugins/frascati-launcher/pom.xml
View file @
a60ac757
...
...
@@ -29,7 +29,7 @@
<parent>
<groupId>
org.ow2.frascati.mojo
</groupId>
<artifactId>
maven-plugins-parent
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<groupId>
org.ow2.frascati.mojo
</groupId>
...
...
frascati/maven-plugins/pom.xml
View file @
a60ac757
...
...
@@ -35,7 +35,7 @@
<parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-parent
</artifactId>
<version>
1.3
-SNAPSHOT
</version>
<version>
1.3
</version>
</parent>
<groupId>
org.ow2.frascati.mojo
</groupId>
...
...
frascati/modules/frascati-all/pom.xml
View file @
a60ac757
This diff is collapsed.
Click to expand it.
frascati/modules/frascati-assembly-factory-juliac-jdt-tinfi-oo/pom.xml
View file @
a60ac757
<?xml version="1.0"?>
<!--
* OW2 FraSCAti: Assembly Factory with Juliac, JDT and Tinfi OO
*
* Copyright (c) 2007-2010 INRIA, University of Lille 1
*
* 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>
<!-- ===================== -->
<!-- General Information -->
<!-- ===================== -->
<parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-sca-compiler-parent
</artifactId>
<version>
1.3-SNAPSHOT
</version>
</parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-runtime-factory
</artifactId>
<!--
<artifactId>frascati-assembly-factory-juliac-jdt-tinfi-oo</artifactId>
-->
<name>
OW2 FraSCAti: Assembly Factory with Juliac, JDT and Tinfi OO Module
</name>
<url>
http://frascati.ow2.org
</url>
<inceptionYear>
2007
</inceptionYear>
<developers>
<developer>
<id>
fournier
</id>
<name>
Damien Fournier
</name>
<email>
Damien.Fournier@inria.fr
</email>
<organization>
INRIA
</organization>
<organizationUrl>
http://www.inria.fr
</organizationUrl>
<roles>
<role>
Architect
</role>
<role>
Developer
</role>
</roles>
</developer>
<developer>
<id>
merle
</id>
<name>
Philippe Merle
</name>
<email>
Philippe.Merle@inria.fr
</email>
<organization>
INRIA
</organization>
<organizationUrl>
http://www.inria.fr
</organizationUrl>
<roles>
<role>
Architect
</role>
<role>
Developer
</role>
</roles>
</developer>
</developers>
<!-- ======= -->
<!-- Build -->
<!-- ======= -->
<build>
<defaultGoal>
install
</defaultGoal>
<plugins>
<!-- Force to copy src/main/resources/* to target/classes/* before executing the Juliac Tinfi SCA Parser plugin. -->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-resources-plugin
</artifactId>
</plugin>
<!-- Compile the Fractal architecture of the OW2 FraSCAti assembly factory with JuliaC. -->
<plugin>
<groupId>
org.objectweb.fractal.juliac
</groupId>
<artifactId>
maven-juliac-plugin
</artifactId>
<configuration>
<adls>
<adl>
org.ow2.frascati.bootstrap.FraSCAtiJDT
</adl>
</adls>
</configuration>
</plugin>
</plugins>
</build>
<!-- ============ -->
<!-- Dependencies -->
<!-- ============ -->
<dependencies>
<!-- OW2 FraSCAti Assembly Factory Module. -->
<dependency>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-assembly-factory
</artifactId>
<version>
${project.version}
</version>
</dependency>
<!-- OW2 FraSCAti Component Factory with Juliac JDT-based compiler. -->
<dependency>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-component-factory-juliac-jdt
</artifactId>
<version>
${project.version}
</version>
</dependency>
<!-- OW2 FraSCAti Component Factory with Juliac and Tinfi Object-Oriented Membranes. -->
<dependency>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-component-factory-juliac-tinfi-oo
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0"?>
<!--
* OW2 FraSCAti: Assembly Factory with Juliac, JDT and Tinfi OO
*
* Copyright (c) 2007-2010 INRIA, University of Lille 1
*
* 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>
<!-- ===================== -->
<!-- General Information -->
<!-- ===================== -->
<parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-sca-compiler-parent
</artifactId>
<version>
1.3
</version>
</parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-runtime-factory
</artifactId>
<!--
<artifactId>frascati-assembly-factory-juliac-jdt-tinfi-oo</artifactId>
-->
<name>
OW2 FraSCAti: Assembly Factory with Juliac, JDT and Tinfi OO Module
</name>
<url>
http://frascati.ow2.org
</url>
<inceptionYear>
2007
</inceptionYear>
<developers>
<developer>
<id>
fournier
</id>
<name>
Damien Fournier
</name>
<email>
Damien.Fournier@inria.fr
</email>
<organization>
INRIA
</organization>
<organizationUrl>
http://www.inria.fr
</organizationUrl>
<roles>
<role>
Architect
</role>
<role>
Developer
</role>
</roles>
</developer>
<developer>
<id>
merle
</id>
<name>
Philippe Merle
</name>
<email>
Philippe.Merle@inria.fr
</email>
<organization>
INRIA
</organization>
<organizationUrl>
http://www.inria.fr
</organizationUrl>
<roles>
<role>
Architect
</role>
<role>
Developer
</role>
</roles>
</developer>
</developers>
<!-- ======= -->
<!-- Build -->
<!-- ======= -->
<build>
<defaultGoal>
install
</defaultGoal>
<plugins>
<!-- Force to copy src/main/resources/* to target/classes/* before executing the Juliac Tinfi SCA Parser plugin. -->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-resources-plugin
</artifactId>
</plugin>
<!-- Compile the Fractal architecture of the OW2 FraSCAti assembly factory with JuliaC. -->
<plugin>
<groupId>
org.objectweb.fractal.juliac
</groupId>
<artifactId>
maven-juliac-plugin
</artifactId>
<configuration>
<adls>
<adl>
org.ow2.frascati.bootstrap.FraSCAtiJDT
</adl>
</adls>
</configuration>
</plugin>
</plugins>
</build>
<!-- ============ -->
<!-- Dependencies -->
<!-- ============ -->
<dependencies>
<!-- OW2 FraSCAti Assembly Factory Module. -->
<dependency>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-assembly-factory
</artifactId>
<version>
${project.version}
</version>
</dependency>
<!-- OW2 FraSCAti Component Factory with Juliac JDT-based compiler. -->
<dependency>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-component-factory-juliac-jdt
</artifactId>
<version>
${project.version}
</version>
</dependency>
<!-- OW2 FraSCAti Component Factory with Juliac and Tinfi Object-Oriented Membranes. -->
<dependency>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-component-factory-juliac-tinfi-oo
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependencies>
</project>
frascati/modules/frascati-assembly-factory/pom.xml
View file @
a60ac757
<?xml version="1.0"?>
<!--
* OW2 FraSCAti: Assembly Factory Module
*
* Copyright (c) 2008-2010 INRIA, University of Lille 1
*
* 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
*
* Contact: frascati@ow2.org
*
* Author: Damien Fournier
*
* Contributor(s): Christophe Demarey
* Nicolas Dolet
* Pierre Carton
* Philippe Merle
-->
<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>
<!-- ===================== -->
<!-- General Information -->
<!-- ===================== -->
<parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-sca-compiler-parent
</artifactId>
<version>
1.3-SNAPSHOT
</version>
</parent>
<groupId>
org.ow2.frascati
</groupId>
<artifactId>
frascati-assembly-factory
</artifactId>
<name>
OW2 FraSCAti: Assembly Factory Module
</name>
<url>
http://frascati.ow2.org/
</url>
<inceptionYear>
2007
</inceptionYear>
<developers>
<developer>
<id>
fournier
</id>
<name>
Damien Fournier
</name>
<email>
Damien.Fournier@inria.fr
</email>
<organization>
INRIA
</organization>
<organizationUrl>
http://www.inria.fr
</organizationUrl>
<roles>
<role>
Architect
</role>
<role>
Developer
</role>
</roles>
</developer>
<developer>
<id>
merle
</id>
<name>
Philippe Merle
</name>
<email>
Philippe.Merle@inria.fr
</email>
<organization>
INRIA
</organization>
<organizationUrl>
http://www.inria.fr
</organizationUrl>