| 2188 |
jgill |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
<project name="JiraSwedishLanguage" basedir=".">
|
|
|
3 |
|
|
|
4 |
<property name="env" environment="env" value="not used" />
|
|
|
5 |
|
|
|
6 |
<import file="auto.xml" optional="true"/>
|
|
|
7 |
<import file="${ant.project.name}depends.xml"/>
|
|
|
8 |
<import file="${env.GBE_DPKG}/ant-using/${ant-using}/ant-using.xml" />
|
|
|
9 |
|
|
|
10 |
<using name="ant-jants"/>
|
|
|
11 |
<using name="ant-release"/>
|
|
|
12 |
<using name="ant-manifest"/>
|
|
|
13 |
|
|
|
14 |
<!-- Create the JAR file containing the Swedish resource bundles and language descriptor
|
|
|
15 |
-->
|
|
|
16 |
<target name="build">
|
|
|
17 |
|
|
|
18 |
<mkdir dir="${basedir}/build/pkg/jar"/>
|
|
|
19 |
|
|
|
20 |
<jar jarfile="${basedir}/build/pkg/jar/language_sv_SE.jar">
|
|
|
21 |
<fileset dir="${basedir}/etc">
|
|
|
22 |
<include name="**/*sv_SE.properties"/>
|
|
|
23 |
<include name="language-descriptor.xml"/>
|
|
|
24 |
</fileset>
|
|
|
25 |
</jar>
|
|
|
26 |
</target>
|
|
|
27 |
|
|
|
28 |
<!-- Create the descpkg file for the dpkg_archive.
|
|
|
29 |
-->
|
|
|
30 |
<target name="make_package">
|
|
|
31 |
<summarise-manifest/>
|
|
|
32 |
</target>
|
|
|
33 |
|
|
|
34 |
</project>
|