Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frascati
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
114
Issues
114
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
frascati
frascati
Commits
cab0547d
Commit
cab0547d
authored
May 14, 2009
by
Nicolas Dolet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unify maven artifacts.
parent
dc07a54f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
199 additions
and
326 deletions
+199
-326
examples/helloworld-annotated/pom.xml
examples/helloworld-annotated/pom.xml
+5
-52
examples/pom.xml
examples/pom.xml
+77
-0
examples/verify-mail/pom.xml
examples/verify-mail/pom.xml
+10
-127
examples/weather/pom.xml
examples/weather/pom.xml
+31
-147
examples/ws-parent/pom.xml
examples/ws-parent/pom.xml
+76
-0
No files found.
examples/helloworld-annotated/pom.xml
View file @
cab0547d
...
...
@@ -34,57 +34,10 @@
<name>
Helloworld annotated
</name>
<build>
<plugins>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<configuration>
<source>
1.5
</source>
<target>
1.5
</target>
</configuration>
</plugin>
<plugin>
<groupId>
org.ow2.frascati.factory
</groupId>
<artifactId>
frascati-factory-plugin
</artifactId>
<version>
0.6-SNAPSHOT
</version>
<executions>
<execution>
<id>
generate-factory
</id>
<phase>
generate-sources
</phase>
<goals>
<goal>
compile
</goal>
</goals>
</execution>
</executions>
<configuration>
<factory>
GenerateFactory
</factory>
<srcs>
<src>
src/main/java
</src>
<src>
src/main/resources
</src>
</srcs>
<composite>
helloworld-wired.composite
</composite>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>
apache-incubating
</id>
<url>
http://people.apache.org/repo/m2-incubating-repository
</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>
org.apache.tuscany.sca
</groupId>
<artifactId>
tuscany-sca-api
</artifactId>
<version>
1.2.1-incubating
</version>
</dependency>
</dependencies>
<parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
parent
</artifactId>
<version>
0.6-SNAPSHOT
</version>
</parent>
</project>
examples/pom.xml
0 → 100644
View file @
cab0547d
<?xml version="1.0"?>
<!--
* OW2 FraSCAti Examples: Parent module
*
* Copyright (c) 2009 INRIA, USTL
*
* 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
-->
<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>
parent
</artifactId>
<version>
0.6-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<name>
FraSCAti examples
</name>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<build>
<defaultGoal>
package
</defaultGoal>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<configuration>
<source>
1.5
</source>
<target>
${java.specification.version}
</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>
org.apache.tuscany.sca
</groupId>
<artifactId>
sca-api
</artifactId>
<version>
0.90-incubating
</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>
apache.incubator
</id>
<url>
http://people.apache.org/repo/m2-incubating-repository
</url>
</repository>
</repositories>
<modules>
<module>
helloworld-annotated
</module>
<module>
ws-parent
</module>
<module>
weather
</module>
<module>
verify-mail
</module>
</modules>
</project>
examples/verify-mail/pom.xml
View file @
cab0547d
...
...
@@ -34,141 +34,24 @@
<name>
Verify mail
</name>
<build>
<parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
ws-parent
</artifactId>
<version>
0.6-SNAPSHOT
</version>
</parent>
<defaultGoal>
package
</defaultGoal>
<properties>
<wsdl.file>
XWebEmailValidation.wsdl
</wsdl.file>
</properties>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<configuration>
<source>
1.5
</source>
<target>
${java.specification.version}
</target>
</configuration>
</plugin>
<!--
CXF maven plugin which allow to generate java interface from
WSDL
-->
<plugin>
<groupId>
org.apache.cxf
</groupId>
<artifactId>
cxf-codegen-plugin
</artifactId>
<version>
2.2.1
</version>
<executions>
<execution>
<id>
generate-sources
</id>
<phase>
generate-sources
</phase>
<configuration>
<sourceRoot>
${basedir}/target/generated/src/main/java
</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>
${basedir}/src/main/wsdl/XWebEmailValidation.wsdl
</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>
wsdl2java
</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
Compile the weather SCA composite with the SCOrWare Generate
Factory.
-->
<plugin>
<groupId>
org.ow2.frascati.factory
</groupId>
<artifactId>
frascati-factory-plugin
</artifactId>
<version>
${project.version}
</version>
<executions>
<execution>
<id>
generate-factory
</id>
<phase>
generate-sources
</phase>
<goals>
<goal>
compile
</goal>
</goals>
</execution>
</executions>
<configuration>
<factory>
GenerateFactory
</factory>
<srcs>
<src>
src/main/java
</src>
<src>
src/main/resources
</src>
<src>
target/generated/src/main/java
</src>
</srcs>
<composite>
verifymail.composite
</composite>
</configuration>
<version>
${cxf.version}
</version>
</plugin>
</plugins>
</build>
<!-- ============= -->
<!-- Repositories -->
<!-- ============= -->
<repositories>
<!-- ObjectWeb Release Repository -->
<repository>
<id>
objectweb-release
</id>
<name>
ObjectWeb Maven Repository
</name>
<url>
http://maven.objectweb.org/maven2
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
</repository>
<!-- Apache -->
<repository>
<id>
apache-incubating
</id>
<url>
http://people.apache.org/repo/m2-incubating-repository
</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<releases
/>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
<id>
objectweb-release
</id>
<name>
ObjectWeb Maven Repository
</name>
<url>
http://maven.objectweb.org/maven2
</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>
org.apache.tuscany.sca
</groupId>
<artifactId>
tuscany-sca-api
</artifactId>
<version>
1.2.1-incubating
</version>
</dependency>
<dependency>
<groupId>
org.apache.cxf
</groupId>
<artifactId>
cxf-rt-frontend-jaxws
</artifactId>
<version>
2.2.1
</version>
<exclusions>
<exclusion>
<groupId>
org.apache.geronimo.specs
</groupId>
<artifactId>
geronimo-activation_1.1_spec
</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
examples/weather/pom.xml
View file @
cab0547d
...
...
@@ -21,154 +21,38 @@
* Contact: frascati@ow2.org
*
* Author: Damien Fournier
*
* Contributor(s): Nicolas Dolet
-->
<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>
weather
</artifactId>
<version>
0.6-SNAPSHOT
</version>
<packaging>
jar
</packaging>
<name>
Weather
</name>
<build>
<defaultGoal>
package
</defaultGoal>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<configuration>
<source>
1.5
</source>
<target>
${java.specification.version}
</target>
</configuration>
</plugin>
<!--
CXF maven plugin which allow to generate java interface from WSDL
-->
<plugin>
<groupId>
org.apache.cxf
</groupId>
<artifactId>
cxf-codegen-plugin
</artifactId>
<version>
2.1.4
</version>
<executions>
<execution>
<id>
generate-sources
</id>
<phase>
generate-sources
</phase>
<configuration>
<sourceRoot>
${basedir}/target/generated/src/main/java
</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>
${basedir}/src/main/wsdl/globalweather.asmx-WSDL.wsdl
</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>
wsdl2java
</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
Compile the weather SCA composite with the SCOrWare Generate
Factory.
-->
<plugin>
<groupId>
org.ow2.frascati.factory
</groupId>
<artifactId>
frascati-factory-plugin
</artifactId>
<version>
${project.version}
</version>
<executions>
<execution>
<id>
generate-factory
</id>
<phase>
generate-sources
</phase>
<goals>
<goal>
compile
</goal>
</goals>
</execution>
</executions>
<configuration>
<factory>
GenerateFactory
</factory>
<srcs>
<src>
src/main/java
</src>
<src>
src/main/resources
</src>
<src>
target/generated/src/main/java
</src>
</srcs>
<composite>
weather.composite
</composite>
</configuration>
</plugin>
</plugins>
</build>
<!-- ============= -->
<!-- Repositories -->
<!-- ============= -->
<repositories>
<!-- ObjectWeb Release Repository -->
<repository>
<id>
objectweb-release
</id>
<name>
ObjectWeb Maven Repository
</name>
<url>
http://maven.objectweb.org/maven2
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
</repository>
<!-- Apache -->
<repository>
<id>
apache-incubating
</id>
<url>
http://people.apache.org/repo/m2-incubating-repository
</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<releases
/>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
<id>
objectweb-release
</id>
<name>
ObjectWeb Maven Repository
</name>
<url>
http://maven.objectweb.org/maven2
</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>
org.apache.tuscany.sca
</groupId>
<artifactId>
tuscany-sca-api
</artifactId>
<version>
1.2.1-incubating
</version>
</dependency>
<dependency>
<groupId>
org.apache.cxf
</groupId>
<artifactId>
cxf-rt-frontend-jaxws
</artifactId>
<version>
2.1.4
</version>
<exclusions>
<exclusion>
<groupId>
org.apache.geronimo.specs
</groupId>
<artifactId>
geronimo-activation_1.1_spec
</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
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>
weather
</artifactId>
<version>
0.6-SNAPSHOT
</version>
<packaging>
jar
</packaging>
<name>
Weather
</name>
<parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
ws-parent
</artifactId>
<version>
0.6-SNAPSHOT
</version>
</parent>
<properties>
<wsdl.file>
globalweather.asmx-WSDL.wsdl
</wsdl.file>
</properties>
<build>
<plugins>
<plugin>
<groupId>
org.apache.cxf
</groupId>
<artifactId>
cxf-codegen-plugin
</artifactId>
<version>
${cxf.version}
</version>
</plugin>
</plugins>
</build>
</project>
examples/ws-parent/pom.xml
0 → 100644
View file @
cab0547d
<?xml version="1.0"?>
<!--
* OW2 FraSCAti Examples: Parent module for web services
*
* Copyright (c) 2009 INRIA, USTL
*
* 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
-->
<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>
<version>
0.6-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<name>
FraSCAti web services examples
</name>
<parent>
<groupId>
org.ow2.frascati.examples
</groupId>
<artifactId>
parent
</artifactId>
<version>
0.6-SNAPSHOT
</version>
</parent>
<properties>
<cxf.version>
2.2.1
</cxf.version>
</properties>
<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>
${basedir}/src/main/wsdl/${wsdl.file}
</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>
wsdl2java
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment