FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ydb-java-examples/basic_example/pom.xml at master · ydb-platform/ydb-java-examples · GitHub
ydb-platform
/
ydb-java-examples
Public
Notifications
You must be signed in to change notification settings
Fork
8
Star
7
Code
Issues
1
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ydb-java-examples
/
basic_example
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
83 lines (74 loc) · 2.94 KB
Breadcrumbs
ydb-java-examples
/
basic_example
/
pom.xml
Copy path
File metadata and controls
83 lines (74 loc) · 2.94 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
<?
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
>tech.ydb.examples</
groupId
>
<
artifactId
>ydb-sdk-examples</
artifactId
>
<
version
>1.1.0-SNAPSHOT</
version
>
</
parent
>
<
artifactId
>ydb-basic-example</
artifactId
>
<
name
>YDB Basic Example</
name
>
<
description
>Simple example of usage Java SDK for YDB</
description
>
<
properties
>
<
junit5
.version>5.10.1</
junit5
.version>
</
properties
>
<
dependencies
>
<
dependency
>
<
groupId
>tech.ydb</
groupId
>
<
artifactId
>ydb-sdk-table</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>tech.ydb.auth</
groupId
>
<
artifactId
>yc-auth-provider</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.logging.log4j</
groupId
>
<
artifactId
>log4j-slf4j-impl</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>tech.ydb.test</
groupId
>
<
artifactId
>ydb-junit5-support</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.junit.jupiter</
groupId
>
<
artifactId
>junit-jupiter-api</
artifactId
>
<
version
>
${junit5.version}
</
version
>
<
scope
>test</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
finalName
>ydb-basic-example</
finalName
>
<
plugins
>
<!--
copy dependencies to libs folder
-->
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-dependency-plugin</
artifactId
>
</
plugin
>
<!--
add libs folder to classpath
-->
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-jar-plugin</
artifactId
>
<
configuration
>
<
archive
>
<
manifest
>
<
addClasspath
>true</
addClasspath
>
<
classpathPrefix
>libs/</
classpathPrefix
>
<
mainClass
>tech.ydb.example.App</
mainClass
>
</
manifest
>
</
archive
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-surefire-plugin</
artifactId
>
<
configuration
>
<
environmentVariables
>
<
TESTCONTAINERS_REUSE_ENABLE
>true</
TESTCONTAINERS_REUSE_ENABLE
>
<
YDB_ANONYMOUS_CREDENTIALS
>1</
YDB_ANONYMOUS_CREDENTIALS
>
</
environmentVariables
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL