-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
58 lines (58 loc) · 1.75 KB
/
pom.xml
File metadata and controls
58 lines (58 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<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.fast.archetype</groupId>
<artifactId>fast-archetype-parent</artifactId>
<version>2.8</version>
</parent>
<groupId>org.esigate</groupId>
<artifactId>esigate-site</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>ESIGate static website</name>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>3.2.0</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.fast.maven.plugin</groupId>
<artifactId>fast-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>2.0.0</version>
<configuration>
<fromDir>target/generated-html/</fromDir>
<includes>**</includes>
<url>scp://shell.sourceforge.net/home/project-web/webassembletool/htdocs</url>
<serverId>esigate-site</serverId>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>smile-github-repository</id>
<url>http://smile-sa.github.com/maven-repository/releases</url>
</repository>
</repositories>
<url>http://www.esigate.org</url>
<inceptionYear>2012</inceptionYear>
</project>