forked from Kurento/kurento-jsonrpc-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
135 lines (119 loc) · 4.17 KB
/
pom.xml
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.kurento</groupId>
<artifactId>kurento-jsonrpc-js</artifactId>
<version>5.0.5-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Kurento Web SDK - RPC Builder</name>
<description>
Kurento Web SDK RPC Builder
The kurento-jsonrpc-js project contains the implementation
of a transport and protocol agnostic RPC library for browser and Node.js
</description>
<url>http://www.kurento.org/docs/${project.version}</url>
<issueManagement>
<system>Redmine</system>
<url>https://repository.kurento.org/redmine/</url>
</issueManagement>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Kurento</name>
<url>http://www.kurento.org</url>
</organization>
<scm>
<url>https://github.com/Kurento/${project.artifactId}</url>
<connection>scm:git:https://github.com/Kurento/${project.artifactId}.git</connection>
<developerConnection>scm:git:ssh://[email protected]:Kurento/${project.artifactId}.git</developerConnection>
<tag>develop</tag>
</scm>
<mailingLists>
<mailingList>
<name>Kurento List</name>
<subscribe>http://groups.google.com/group/kurento/subscribe</subscribe>
<post>http://groups.google.com/group/kurento/post</post>
<archive>http://groups.google.com/group/kurento/about</archive>
</mailingList>
<mailingList>
<name>Kurento Core List</name>
<subscribe>http://groups.google.com/group/kurento-core/subscribe</subscribe>
<post>http://groups.google.com/group/kurento-core/post</post>
<archive>http://groups.google.com/group/kurento-core/about</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>kurento.org</id>
<name>-kurento.org Community</name>
<organization>Kurento.org</organization>
<organizationUrl>http://www.kurento.org</organizationUrl>
</developer>
</developers>
<properties>
<version.shell.plugin>1.0-beta-1</version.shell.plugin>
<!-- ************** -->
<!-- Build settings -->
<!-- ************** -->
<!-- Cross plugins settings -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- maven-compiler-plugin -->
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.7</maven.compiler.source>
<!-- Options to override the compiler arguments directly on the compiler
arument line to separate between what the IDE understands as the source level
and what the Maven compiler actually use. -->
<maven.compiler.argument.target>${maven.compiler.target}</maven.compiler.argument.target>
<maven.compiler.argument.source>${maven.compiler.source}</maven.compiler.argument.source>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>shell-maven-plugin</artifactId>
<version>${version.shell.plugin}</version>
<executions>
<execution>
<id>stage-sources</id>
<phase>process-sources</phase>
<goals>
<goal>shell</goal>
</goals>
<configuration>
<workDir>${workDir}</workDir>
<chmod>true</chmod>
<keepScriptFile>true</keepScriptFile>
<script>
cd ${basedir}
npm install
node_modules/.bin/grunt
node_modules/.bin/grunt sync:bower
mkdir -p \
src/main/resources/META-INF/resources/js/
cp dist/* \
src/main/resources/META-INF/resources/js/
</script>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>
${basedir}/assembly.xml
</descriptor>
</descriptors>
<outputDirectory>${project.build.directory}</outputDirectory>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</plugin>
</plugins>
</build>
</project>