FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Android-Cookbook-Examples/HelloTestingTarget/pom.xml at master · Android-Exampl/Android-Cookbook-Examples · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Android-Exampl
/
Android-Cookbook-Examples
Public
forked from
IanDarwin/Android-Cookbook-Examples
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Android-Cookbook-Examples
/
HelloTestingTarget
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
63 lines (57 loc) · 1.9 KB
Breadcrumbs
Android-Cookbook-Examples
/
HelloTestingTarget
/
pom.xml
Copy path
File metadata and controls
63 lines (57 loc) · 1.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<?
xml
version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<
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/xsd/maven-4.0.0.xsd
"
>
<
modelVersion
>4.0.0</
modelVersion
>
<
groupId
>com.androidcookbook</
groupId
>
<
artifactId
>HelloTestingTarget</
artifactId
>
<
version
>1.0-SNAPSHOT</
version
>
<
packaging
>apk</
packaging
>
<
inceptionYear
>2012</
inceptionYear
>
<
url
>http://androidcookbook.com/</
url
>
<
parent
>
<
groupId
>com.androidcookbook.examples</
groupId
>
<
artifactId
>android-cookbook-examples-parent</
artifactId
>
<
version
>1.0</
version
>
</
parent
>
<
properties
>
<
platform
.version>4.1.1.4</
platform
.version>
</
properties
>
<
dependencies
>
<!--
This is an Android project
-->
<
dependency
>
<
groupId
>com.google.android</
groupId
>
<
artifactId
>android</
artifactId
>
<
version
>
${platform.version}
</
version
>
<
scope
>provided</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
plugins
>
<
plugin
>
<!--
Use the Android Plugin
-->
<
groupId
>com.simpligility.maven.plugins</
groupId
>
<
artifactId
>android-maven-plugin</
artifactId
>
<
version
>
${android.plugin.version}
</
version
>
<
configuration
>
<
androidManifestFile
>
${project.basedir}
/AndroidManifest.xml</
androidManifestFile
>
<
assetsDirectory
>
${project.basedir}
/assets</
assetsDirectory
>
<
resourceDirectory
>
${project.basedir}
/res</
resourceDirectory
>
<
nativeLibrariesDirectory
>
${project.basedir}
/libs</
nativeLibrariesDirectory
>
<
sdk
>
<
platform
>19</
platform
>
</
sdk
>
<
undeployBeforeDeploy
>false</
undeployBeforeDeploy
>
</
configuration
>
<
extensions
>true</
extensions
>
</
plugin
>
<
plugin
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>2.3.2</
version
>
<
configuration
>
<
source
>1.7</
source
>
<
target
>1.7</
target
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL