-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.xml
More file actions
115 lines (100 loc) · 4.4 KB
/
pom.xml
File metadata and controls
115 lines (100 loc) · 4.4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<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>cloudelements</groupId>
<artifactId>bulkloader.io</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>bulkloader.io</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.clean.plugin.version>2.6</maven.clean.plugin.version>
<maven.release.plugin.version>2.5.1</maven.release.plugin.version>
<maven.wagon.extension.version>2.7</maven.wagon.extension.version>
</properties>
<pluginRepositories>
<pluginRepository>
<id>cloud-elements-repo</id>
<name>Cloud Elements Maven 2 Repository</name>
<url>http://repo.cloud-elements.com</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>maven-repo1</id>
<name>Maven 2 Repository 1</name>
<url>http://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<finalName>bulkloader.io</finalName>
<sourceDirectory>src/main/</sourceDirectory>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>target-grunt</directory>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<!--<jsSourceDirectory>.</jsSourceDirectory>-->
<!--<sourceDirectory>src/main/</sourceDirectory>-->
<groupId>pl.allegro</groupId>
<artifactId>grunt-maven-plugin</artifactId>
<version>1.5.0</version>
<configuration>
<target>build</target>
<!-- relative to src/main/webapp/, default: static -->
<jsSourceDirectory>.</jsSourceDirectory>
<sourceDirectory>src/main/</sourceDirectory>
<!-- example options usage to get verbose output in logs -->
<gruntOptions>
<gruntOption>--force</gruntOption>
<gruntOption>--verbose</gruntOption>
<gruntOption>${environment}</gruntOption>
</gruntOptions>
<ignoreTasksErrors>true</ignoreTasksErrors>
<!-- example npm install env variable -->
<npmEnvironmentVar>
<PHANTOMJS_CDNURL>http://cnpmjs.org/downloads</PHANTOMJS_CDNURL>
</npmEnvironmentVar>
<!-- example options usage to filter variables in given resource -->
<filteredResources>
<filteredResource>maven-properties.json</filteredResource>
</filteredResources>
</configuration>
<executions>
<execution>
<goals>
<goal>create-resources</goal>
<goal>npm</goal>
<!-- or npm-offline if npm failure is not an option -->
<goal>bower</goal>
<goal>grunt</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
</dependencies>
</project>