summaryrefslogtreecommitdiffstats
path: root/.gitignore
Commit message (Expand)AuthorAgeFilesLines
* Added documentation builderwout2014-07-131-1/+0
* Fixing typo in READMEwout2014-06-121-1/+2
* Made code more readable and included docswout2013-01-041-1/+3
* Added font elementwout2012-12-201-1/+2
* Slimmed down SVG.Shapewout2012-12-171-1/+2
* Included dist fileswout2012-12-171-3/+2
* Initial commitwout2012-12-151-0/+4
' value='switch'/> Vaadin 6, 7, 8 is a Java framework for modern Java web applications: https://github.com/vaadin/frameworkwww-data
summaryrefslogtreecommitdiffstats
path: root/themes-compiled/build.xml
blob: a3adbd654fddd85629376c4a8ae6fac3941e67bd (plain)
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
<?xml version="1.0"?>

<project name="vaadin-client-compiler" basedir="." default="publish-local" xmlns:ivy="antlib:org.apache.ivy.ant">
	<description>
		Themes compiled to CSS 
	</description>

	<include file="../common.xml" as="common" />
	<include file="../build.xml" as="vaadin" />
	<include file="../gwt-files.xml" as="gwtfiles" />

	<!-- global properties -->
	<property name="module.name" value="vaadin-themes-compiled" />
	<property name="result.dir" value="result" />
	<property name="theme.result.dir" value="${result.dir}/VAADIN/themes" />

	<target name="compile-themes">
		<ivy:resolve resolveid="common" conf="build" />
		<ivy:cachepath pathid="classpath.compile.theme" conf="build" />

		<antcall target="compile-theme">
			<param name="theme" value="base" />
		</antcall>
		<antcall target="compile-theme">
			<param name="theme" value="runo" />
		</antcall>
		<antcall target="compile-theme">
			<param name="theme" value="reindeer" />
		</antcall>
		<antcall target="compile-theme">
			<param name="theme" value="chameleon" />
		</antcall>
		<antcall target="compile-theme">
			<param name="theme" value="liferay" />
		</antcall>
	</target>

	<target name="jar" depends="compile-themes">
		<fail unless="module.name" message="No module.name parameter given" />

		<property name="result.dir" location="result" />
		<property name="result.jar" location="${result.dir}/lib/${module.name}-${vaadin.version}.jar" />
		<property name="classes" location="{$result.dir}/classes" />
		<antcall target="common.pom.xml" />
		
		<jar jarfile="${result.jar}">
			<fileset dir="${result.dir}">
				<include name="VAADIN/themes/**" />
			</fileset>
			<fileset refid="common.files.for.all.jars" />
		</jar>

	</target>
	<target name="copy-theme">
		<fail unless="theme" message="You must give the theme name to copy n the 'theme' parameter" />
		<property name="theme.source.dir" location="../WebContent/VAADIN/themes" />

		<copy todir="${theme.result.dir}">
			<fileset dir="${theme.source.dir}">
				<include name="${theme}/**" />
			</fileset>
		</copy>
	</target>

	<target name="compile-theme" depends="copy-theme">
		<fail unless="theme" message="You must give the theme name to compile in the 'theme' parameter" />

		<ivy:resolve resolveid="common" conf="compile-theme" />
		<ivy:cachepath pathid="classpath.compile.theme" conf="compile-theme" />
		<ivy:cachepath pathid="classpath.runtime.theme" conf="build" />

		<echo>Compiling ${theme}</echo>
		<mkdir dir="${theme.result.dir}" />

		<!-- compile the theme -->
		<java classname="com.vaadin.buildhelpers.CompileTheme" classpathref="classpath.compile.theme" failonerror="yes" fork="yes" maxmemory="512m">
			<arg value="--theme" />
			<arg value="${theme}" />
			<arg value="--theme-folder" />
			<arg value="${theme.result.dir}" />
			<jvmarg value="-Xss8M" />
			<jvmarg value="-XX:MaxPermSize=256M" />
			<jvmarg value="-Djava.awt.headless=true" />
		</java>

	</target>


	<target name="publish-local" depends="jar">
		<antcall target="common.publish-local">

		</antcall>
	</target>

	<target name="clean">
		<antcall target="common.clean" />
	</target>

	<target name="tests">
		<!--<antcall target="common.tests.run" />-->
		<echo>WHAT? No tests for ${module.name}!</echo>
	</target>

</project>