forked from GwennaelBuchet/SceneGraph.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
119 lines (103 loc) · 6.05 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012 Capgemini Technology Services (hereinafter “Capgemini”)
License/Terms of Use
Permission is hereby granted, free of charge and for the term of intellectual property rights on the Software, to any
person obtaining a copy of this software and associated documentation files (the "Software"), to use, copy, modify
and propagate free of charge, anywhere in the world, all or part of the Software subject to the following mandatory conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
Any failure to comply with the above shall automatically terminate the license and be construed as a breach of these
Terms of Use causing significant harm to Capgemini.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of Capgemini shall not be used in advertising or otherwise to promote
the use or other dealings in this Software without prior written authorization from Capgemini.
These Terms of Use are subject to French law.
@author Gwennael Buchet ([email protected])
-->
<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>com.capgemini</groupId>
<artifactId>cgscenegraph</artifactId>
<version>1.3.1</version>
<name>cgSceneGraph</name>
<!--
Usage to prepare a SNAPSHOT or RELEASE version :
- put the right version in <version>
- execute 'mvn clean yuicompressor:compress'
-->
<build>
<plugins>
<!-- Compress and aggregate the javascript code -->
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>1.3.0</version>
<configuration>
<!--
@see http://davidb.github.com/yuicompressor-maven-plugin/compress-mojo.html
-->
<sourceDirectory>${project.basedir}/src/</sourceDirectory>
<outputDirectory>${project.build.directory}</outputDirectory>
<!-- Options -->
<nosuffix>true</nosuffix>
<jswarn>false</jswarn>
<linebreakpos>-1</linebreakpos>
<force>true</force>
<aggregations>
<!--
@see http://davidb.github.com/yuicompressor-maven-plugin/ex_aggregation.html
-->
<aggregation>
<!-- cgscenegraph minify js -->
<inputDir>${project.build.directory}</inputDir>
<output>min/${project.artifactId}_${project.version}.min.js</output>
<insertNewLine>false</insertNewLine>
<includes>
<include>utils/util.array.js</include>
<include>utils/class.class.js</include>
<include>utils/class.hashmap.js</include>
<include>utils/util.color.js</include>
<include>utils/math/class.vector2D.js</include>
<include>utils/class.region.js</include>
<include>constants.js</include>
<include>utils/class.traverser.js</include>
<include>globals.js</include>
<include>utils/util.global.js</include>
<include>utils/util.color.js</include>
<include>utils/math/math.js</include>
<include>utils/class.handlebox.js</include>
<include>animation/class.anim.key.js</include>
<include>animation/class.anim.timeline.js</include>
<include>node/class.node.js</include>
<include>node/class.node.colorPicker.js</include>
<include>node/class.node.tabMenu.js</include>
<include>node/class.node.text.js</include>
<include>node/class.node.webview.js</include>
<include>node/class.node.square.js</include>
<include>node/class.node.circle.js</include>
<include>node/class.node.ellipse.js</include>
<include>node/class.node.image.js</include>
<include>node/class.node.animatedSprite.js</include>
<include>node/class.node.button.js</include>
<include>animation/class.particles.js</include>
<include>class.scenegraph.js</include>
<include>class.scene.js</include>
</includes>
</aggregation>
</aggregations>
</configuration>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<name>oss.sonatype.org</name>
<id>oss.sonatype.org</id>
<url>http://oss.sonatype.org/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
</project>