~ubuntu-branches/ubuntu/wily/gs-collections/wily

« back to all changes in this revision

Viewing changes to serialization-tests/build.xml

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2015-07-23 12:42:30 UTC
  • Revision ID: package-import@ubuntu.com-20150723124230-2rjvfv6elyn2m7d4
Tags: upstream-5.1.0
ImportĀ upstreamĀ versionĀ 5.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
 
 
3
<!--
 
4
  ~ Copyright 2013 Goldman Sachs.
 
5
  ~
 
6
  ~ Licensed under the Apache License, Version 2.0 (the "License");
 
7
  ~ you may not use this file except in compliance with the License.
 
8
  ~ You may obtain a copy of the License at
 
9
  ~
 
10
  ~     http://www.apache.org/licenses/LICENSE-2.0
 
11
  ~
 
12
  ~ Unless required by applicable law or agreed to in writing, software
 
13
  ~ distributed under the License is distributed on an "AS IS" BASIS,
 
14
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
15
  ~ See the License for the specific language governing permissions and
 
16
  ~ limitations under the License.
 
17
  -->
 
18
 
 
19
<project name="serialization-tests" default="test" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
 
20
    <property name="src.dir" location="src/main/java" />
 
21
    <property name="testsrc.dir" location="src/test/java" />
 
22
    <property name="source.level" value="1.5" />
 
23
    <property name="target.level" value="1.5" />
 
24
 
 
25
    <import file="../common-build.xml" />
 
26
 
 
27
    <target name="install" depends="-ivy-init, jar, source-jar, ivy-make-pom"
 
28
        description="installs the module to the local ivy cache">
 
29
        <ivy:resolve />
 
30
        <ivy:publish resolver="local" overwrite="true" pubrevision="${build.version.full}">
 
31
            <artifacts pattern="target/[artifact]-${build.version.full}(-[classifier]).[ext]" />
 
32
        </ivy:publish>
 
33
    </target>
 
34
 
 
35
</project>