FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-lambda/base/dump-java8/pom.xml at python3.7 · chrisoverzero/docker-lambda · GitHub
chrisoverzero
/
docker-lambda
Public
forked from
lambci/docker-lambda
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
docker-lambda
/
base
/
dump-java8
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
75 lines (71 loc) · 2.23 KB
Breadcrumbs
docker-lambda
/
base
/
dump-java8
/
pom.xml
Copy path
File metadata and controls
75 lines (71 loc) · 2.23 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
64
65
66
67
68
69
70
71
72
73
74
75
<
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
>org.lambci.lambda</
groupId
>
<
artifactId
>dump-java8</
artifactId
>
<
version
>1.0.0</
version
>
<
packaging
>jar</
packaging
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>3.8.0</
version
>
<
configuration
>
<
source
>1.8</
source
>
<
target
>1.8</
target
>
<
encoding
>UTF-8</
encoding
>
<
forceJavacCompilerUse
>true</
forceJavacCompilerUse
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-shade-plugin</
artifactId
>
<
version
>3.2.0</
version
>
<
executions
>
<
execution
>
<
phase
>package</
phase
>
<
goals
>
<
goal
>shade</
goal
>
</
goals
>
<
configuration
>
<
artifactSet
>
<
excludes
>
<
exclude
>com.amazonaws:aws-lambda-java-events</
exclude
>
<
exclude
>com.amazonaws:aws-lambda-java-core</
exclude
>
</
excludes
>
</
artifactSet
>
</
configuration
>
</
execution
>
</
executions
>
</
plugin
>
</
plugins
>
</
build
>
<
dependencyManagement
>
<
dependencies
>
<
dependency
>
<
groupId
>com.amazonaws</
groupId
>
<
artifactId
>aws-java-sdk-bom</
artifactId
>
<
version
>1.11.452</
version
>
<
type
>pom</
type
>
<
scope
>import</
scope
>
</
dependency
>
</
dependencies
>
</
dependencyManagement
>
<
dependencies
>
<
dependency
>
<
groupId
>com.amazonaws</
groupId
>
<
artifactId
>aws-java-sdk-s3</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>com.amazonaws</
groupId
>
<
artifactId
>aws-lambda-java-events</
artifactId
>
<
version
>2.2.4</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.amazonaws</
groupId
>
<
artifactId
>aws-lambda-java-core</
artifactId
>
<
version
>1.2.0</
version
>
</
dependency
>
</
dependencies
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL