FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-operator-sdk/operator-framework-core/pom.xml at master · java-tools/java-operator-sdk · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
java-tools
/
java-operator-sdk
Public
forked from
operator-framework/java-operator-sdk
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
java-operator-sdk
/
operator-framework-core
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
97 lines (91 loc) · 3.12 KB
Breadcrumbs
java-operator-sdk
/
operator-framework-core
/
pom.xml
Copy path
File metadata and controls
97 lines (91 loc) · 3.12 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?
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
>
<
parent
>
<
groupId
>io.javaoperatorsdk</
groupId
>
<
artifactId
>java-operator-sdk</
artifactId
>
<
version
>1.9.1-SNAPSHOT</
version
>
<
relativePath
>../pom.xml</
relativePath
>
</
parent
>
<
artifactId
>operator-framework-core</
artifactId
>
<
name
>Operator SDK - Framework - Core</
name
>
<
description
>Core framework for implementing Kubernetes operators</
description
>
<
packaging
>jar</
packaging
>
<
properties
>
<
java
.version>11</
java
.version>
<
maven
.compiler.source>11</
maven
.compiler.source>
<
maven
.compiler.target>11</
maven
.compiler.target>
</
properties
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-surefire-plugin</
artifactId
>
<
version
>
${surefire.version}
</
version
>
</
plugin
>
<
plugin
>
<!--
Used to generate the version / commit information
-->
<
groupId
>pl.project13.maven</
groupId
>
<
artifactId
>git-commit-id-plugin</
artifactId
>
<
version
>4.0.3</
version
>
<
executions
>
<
execution
>
<
id
>get-the-git-infos</
id
>
<
goals
>
<
goal
>revision</
goal
>
</
goals
>
<
phase
>initialize</
phase
>
</
execution
>
</
executions
>
<
configuration
>
<
generateGitPropertiesFile
>true</
generateGitPropertiesFile
>
<
generateGitPropertiesFilename
>
${project.build.outputDirectory}
/version.properties
</
generateGitPropertiesFilename
>
<
includeOnlyProperties
>
<
includeOnlyProperty
>^git.build.(time|version)$</
includeOnlyProperty
>
<
includeOnlyProperty
>^git.commit.id.(abbrev|full)$</
includeOnlyProperty
>
</
includeOnlyProperties
>
<
commitIdGenerationMode
>full</
commitIdGenerationMode
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
<
dependencies
>
<
dependency
>
<
groupId
>io.fabric8</
groupId
>
<
artifactId
>openshift-client</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.slf4j</
groupId
>
<
artifactId
>slf4j-api</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.junit.jupiter</
groupId
>
<
artifactId
>junit-jupiter-api</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.junit.jupiter</
groupId
>
<
artifactId
>junit-jupiter-engine</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.mockito</
groupId
>
<
artifactId
>mockito-core</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.logging.log4j</
groupId
>
<
artifactId
>log4j-slf4j-impl</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.assertj</
groupId
>
<
artifactId
>assertj-core</
artifactId
>
<
version
>3.18.0</
version
>
<
scope
>test</
scope
>
</
dependency
>
</
dependencies
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL