Skip to content

Commit 555d148

Browse files
committed
update
1 parent e204103 commit 555d148

File tree

18 files changed

+10111
-1
lines changed

18 files changed

+10111
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
# OGC OWS Context demonstration
1+
ows-context-demo
2+
================

pom.xml

Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.terradue.ciop.app</groupId>
5+
<artifactId>ows-context-demo</artifactId>
6+
<packaging>pom</packaging>
7+
<name>OGC OWS Context demo</name>
8+
<description>OGC OWS Context demo</description>
9+
<version>0.21</version>
10+
<scm>
11+
<connection>scm:git:git@github.com:Terradue/ows-context-demo.git</connection>
12+
<developerConnection>scm:git:git@github.com:Terradue/ows-context-demo.git</developerConnection>
13+
<url>https://github.com/Terradue/ows-context-demo.git</url>
14+
<tag>HEAD</tag>
15+
</scm>
16+
<properties>
17+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18+
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
19+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
20+
<maven.deploy.skip>true</maven.deploy.skip>
21+
<github.global.server>github</github.global.server>
22+
<github.site.repositoryName>ows-context-demo</github.site.repositoryName>
23+
<github.site.repositoryOwner>Terradue</github.site.repositoryOwner>
24+
</properties>
25+
<repositories>
26+
<repository>
27+
<id>repository.terradue.com</id>
28+
<name>repository.terradue.com-releases</name>
29+
<url>http://repository.terradue.com/artifactory/libs-release-public</url>
30+
<releases>
31+
<enabled>true</enabled>
32+
<checksumPolicy>warn</checksumPolicy>
33+
</releases>
34+
</repository>
35+
</repositories>
36+
<pluginRepositories>
37+
<pluginRepository>
38+
<snapshots/>
39+
<id>repository.terradue.com</id>
40+
<name>repository.terradue.com-releases</name>
41+
<url>http://repository.terradue.com/artifactory/libs-release-public</url>
42+
</pluginRepository>
43+
</pluginRepositories>
44+
<build>
45+
<plugins>
46+
<plugin>
47+
<groupId>org.codehaus.mojo</groupId>
48+
<artifactId>build-helper-maven-plugin</artifactId>
49+
<version>1.8</version>
50+
<executions>
51+
<execution>
52+
<id>parse-version</id>
53+
<goals>
54+
<goal>parse-version</goal>
55+
</goals>
56+
</execution>
57+
</executions>
58+
</plugin>
59+
<plugin>
60+
<artifactId>maven-resources-plugin</artifactId>
61+
<version>2.6</version>
62+
<executions>
63+
<execution>
64+
<id>copy-demo-src</id>
65+
<phase>pre-site</phase>
66+
<goals>
67+
<goal>copy-resources</goal>
68+
</goals>
69+
<configuration>
70+
<outputDirectory>${project.build.directory}/demo</outputDirectory>
71+
<resources>
72+
<resource>
73+
<directory>${basedir}/src/main/demo</directory>
74+
<filtering>false</filtering>
75+
</resource>
76+
</resources>
77+
</configuration>
78+
</execution>
79+
</executions>
80+
</plugin>
81+
<plugin>
82+
<groupId>org.codehaus.mojo</groupId>
83+
<artifactId>exec-maven-plugin</artifactId>
84+
<version>1.3.1</version>
85+
<executions>
86+
</executions>
87+
</plugin>
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-release-plugin</artifactId>
91+
<version>2.5</version>
92+
<dependencies>
93+
<dependency>
94+
<groupId>org.apache.maven.scm</groupId>
95+
<artifactId>maven-scm-provider-gitexe</artifactId>
96+
<version>1.9</version>
97+
</dependency>
98+
</dependencies>
99+
</plugin>
100+
<plugin>
101+
<groupId>org.apache.maven.plugins</groupId>
102+
<artifactId>maven-assembly-plugin</artifactId>
103+
<version>2.4</version>
104+
<executions>
105+
<execution>
106+
<id>package</id>
107+
<phase>package</phase>
108+
<goals>
109+
<goal>single</goal>
110+
</goals>
111+
<configuration>
112+
<outputDirectory>${project.build.directory}/package</outputDirectory>
113+
<descriptors>
114+
<descriptor>${basedir}/src/assembly/package.xml</descriptor>
115+
</descriptors>
116+
</configuration>
117+
</execution>
118+
</executions>
119+
</plugin>
120+
<plugin>
121+
<groupId>de.jutzig</groupId>
122+
<artifactId>github-release-plugin</artifactId>
123+
<version>1.0.3</version>
124+
<executions>
125+
<execution>
126+
<id>github-upload</id>
127+
<phase>deploy</phase>
128+
<goals>
129+
<goal>release</goal>
130+
</goals>
131+
<inherited>false</inherited>
132+
<configuration>
133+
<releaseName>v${project.version}</releaseName>
134+
<tag>v${project.version}</tag>
135+
<artifact>${project.build.directory}/package/ows-context-demo-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-package.tar.gz</artifact>
136+
<overwriteArtifact>true</overwriteArtifact>
137+
</configuration>
138+
</execution>
139+
</executions>
140+
</plugin>
141+
<plugin>
142+
<groupId>com.github.github</groupId>
143+
<artifactId>site-maven-plugin</artifactId>
144+
<version>0.8</version>
145+
<configuration>
146+
<message>Creating site for ${project.version}</message>
147+
</configuration>
148+
<executions>
149+
<execution>
150+
<goals>
151+
<goal>site</goal>
152+
</goals>
153+
<phase>site-deploy</phase>
154+
<configuration>
155+
<outputDirectory>${project.build.directory}/demo</outputDirectory>
156+
</configuration>
157+
</execution>
158+
</executions>
159+
</plugin>
160+
<plugin>
161+
<groupId>com.github.github</groupId>
162+
<artifactId>site-maven-plugin</artifactId>
163+
<version>0.9</version>
164+
<configuration>
165+
<message>Creating site for ${project.version}</message>
166+
</configuration>
167+
<executions>
168+
<execution>
169+
<goals>
170+
<goal>site</goal>
171+
</goals>
172+
<phase>site-deploy</phase>
173+
<configuration>
174+
<outputDirectory>${project.build.directory}/demo</outputDirectory>
175+
</configuration>
176+
</execution>
177+
</executions>
178+
</plugin>
179+
<plugin>
180+
<groupId>org.apache.maven.plugins</groupId>
181+
<artifactId>maven-site-plugin</artifactId>
182+
<version>3.0</version>
183+
<configuration>
184+
<skip>true</skip>
185+
<skipDeploy>true</skipDeploy>
186+
</configuration>
187+
</plugin>
188+
</plugins>
189+
</build>
190+
</project>

src/assembly/package.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<assembly>
2+
<id>package</id>
3+
<formats>
4+
<format>tar.gz</format>
5+
</formats>
6+
<fileSets>
7+
<fileSet>
8+
<directory>${project.build.directory}/demo</directory>
9+
</fileSet>
10+
</fileSets>
11+
</assembly>

0 commit comments

Comments
 (0)