This repository was archived by the owner on May 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
119 lines (119 loc) · 5.97 KB
/
build.xml
File metadata and controls
119 lines (119 loc) · 5.97 KB
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" standalone="no"?>
<!-- WARNING: Eclipse auto-generated file.
Any modifications will be overwritten.
To include a user specific buildfile here, simply create one in the same
directory with the processing instruction <?eclipse.ant.import?>
as the first entry and export the buildfile again. -->
<project basedir="." default="build" name="mendeley-java-sdk">
<property environment="env"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.6"/>
<property name="source" value="1.6"/>
<path id="mendeley-java-sdk.classpath">
<pathelement location="target"/>
<pathelement location="dev-lib/junit-4.5.jar"/>
<pathelement location="lib/gson-1.7.1.jar"/>
<pathelement location="lib/commons-codec-1.4.jar"/>
<pathelement location="lib/commons-logging-1.1.1.jar"/>
<pathelement location="lib/httpclient-4.1.1.jar"/>
<pathelement location="lib/httpcore-4.1.jar"/>
<pathelement location="lib/signpost-core-1.2.jar"/>
<pathelement location="lib/signpost-commonshttp4-1.2.jar"/>
</path>
<target name="init">
<mkdir dir="target"/>
<copy includeemptydirs="false" todir="target">
<fileset dir="core/src/main/java" excludes="**/*.launch, **/*.java"/>
</copy>
<copy includeemptydirs="false" todir="target">
<fileset dir="core/src/main/resources" excludes="**/*.launch, **/*.java"/>
</copy>
<copy includeemptydirs="false" todir="target">
<fileset dir="core/src/test/java" excludes="**/*.launch, **/*.java"/>
</copy>
<copy includeemptydirs="false" todir="target">
<fileset dir="core/src/test/resources" excludes="**/*.launch, **/*.java"/>
</copy>
<copy includeemptydirs="false" todir="target">
<fileset dir="examples/src/main/java" excludes="**/*.launch, **/*.java"/>
</copy>
</target>
<target name="clean">
<delete dir="target"/>
</target>
<target depends="clean" name="cleanall"/>
<target depends="build-subprojects,build-project" name="build"/>
<target name="build-subprojects"/>
<target depends="init" name="build-project">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac debug="true" debuglevel="${debuglevel}" destdir="target" source="${source}" target="${target}">
<src path="core/src/main/java"/>
<classpath refid="mendeley-java-sdk.classpath"/>
</javac>
<javac debug="true" debuglevel="${debuglevel}" destdir="target" source="${source}" target="${target}">
<src path="core/src/main/resources"/>
<classpath refid="mendeley-java-sdk.classpath"/>
</javac>
<javac debug="true" debuglevel="${debuglevel}" destdir="target" source="${source}" target="${target}">
<src path="core/src/test/java"/>
<classpath refid="mendeley-java-sdk.classpath"/>
</javac>
<javac debug="true" debuglevel="${debuglevel}" destdir="target" source="${source}" target="${target}">
<src path="core/src/test/resources"/>
<classpath refid="mendeley-java-sdk.classpath"/>
</javac>
<javac debug="true" debuglevel="${debuglevel}" destdir="target" source="${source}" target="${target}">
<src path="examples/src/main/java"/>
<classpath refid="mendeley-java-sdk.classpath"/>
</javac>
</target>
<target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
<target name="DocumentSample">
<java classname="com.mendeley.oapi.services.example.DocumentSample" failonerror="true" fork="yes">
<classpath refid="mendeley-java-sdk.classpath"/>
</java>
</target>
<target name="FolderApiSample">
<java classname="com.mendeley.oapi.services.example.FolderApiSample" failonerror="true" fork="yes">
<jvmarg line="-Ddebug=true"/>
<classpath refid="mendeley-java-sdk.classpath"/>
</java>
</target>
<target name="OAuthExample">
<java classname="com.mendeley.oapi.services.example.OAuthExample" failonerror="true" fork="yes">
<jvmarg line="-Ddebug=true"/>
<classpath refid="mendeley-java-sdk.classpath"/>
</java>
</target>
<target name="PrivateGroupApiSample">
<java classname="com.mendeley.oapi.services.example.PrivateGroupApiSample" failonerror="true" fork="yes">
<classpath refid="mendeley-java-sdk.classpath"/>
</java>
</target>
<target name="PrivateStatsApiSample">
<java classname="com.mendeley.oapi.services.example.PrivateStatsApiSample" failonerror="true" fork="yes">
<jvmarg line="-Ddebug=true"/>
<classpath refid="mendeley-java-sdk.classpath"/>
</java>
</target>
<target name="ProfileApiSample">
<java classname="com.mendeley.oapi.services.example.ProfileApiSample" failonerror="true" fork="yes">
<classpath refid="mendeley-java-sdk.classpath"/>
</java>
</target>
<target name="PublicGroupApiSample">
<java classname="com.mendeley.oapi.services.example.PublicGroupApiSample" failonerror="true" fork="yes">
<classpath refid="mendeley-java-sdk.classpath"/>
</java>
</target>
<target name="PublicStatsApiSample">
<java classname="com.mendeley.oapi.services.example.PublicStatsApiSample" failonerror="true" fork="yes">
<classpath refid="mendeley-java-sdk.classpath"/>
</java>
</target>
<target name="SearchApiSample">
<java classname="com.mendeley.oapi.services.example.SearchApiSample" failonerror="true" fork="yes">
<classpath refid="mendeley-java-sdk.classpath"/>
</java>
</target>
</project>