File tree Expand file tree Collapse file tree 2 files changed +0
-16
lines changed
strongbox-db-schema/src/main/java/org/carlspring/strongbox/db/schema Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change 16
16
import static org .carlspring .strongbox .db .schema .Vertices .PYPI_ARTIFACT_COORDINATES ;
17
17
import static org .carlspring .strongbox .db .schema .Vertices .RAW_ARTIFACT_COORDINATES ;
18
18
import static org .carlspring .strongbox .db .schema .Vertices .REMOTE_ARTIFACT ;
19
- import static org .carlspring .strongbox .db .schema .Vertices .TRANSACTION_PROPAGATION ;
20
19
import static org .carlspring .strongbox .db .schema .Vertices .USER ;
21
20
import static org .janusgraph .core .Multiplicity .MANY2ONE ;
22
21
import static org .janusgraph .core .Multiplicity .MULTI ;
@@ -218,7 +217,6 @@ private void applySchemaChanges(JanusGraphManagement jgm)
218
217
createProperties (jgm );
219
218
220
219
// Vertices
221
- makeVertexLabelIfDoesNotExist (jgm , TRANSACTION_PROPAGATION );
222
220
makeVertexLabelIfDoesNotExist (jgm , ARTIFACT );
223
221
makeVertexLabelIfDoesNotExist (jgm , REMOTE_ARTIFACT );
224
222
makeVertexLabelIfDoesNotExist (jgm , GENERIC_ARTIFACT_COORDINATES );
Original file line number Diff line number Diff line change @@ -4,30 +4,16 @@ public interface Vertices
4
4
{
5
5
6
6
String ARTIFACT = "Artifact" ;
7
-
8
7
String REMOTE_ARTIFACT = "RemoteArtifact" ;
9
-
10
8
String GENERIC_ARTIFACT_COORDINATES = "GenericArtifactCoordinates" ;
11
-
12
9
String ARTIFACT_COORDINATES = "ArtifactCoordinates" ;
13
-
14
10
String RAW_ARTIFACT_COORDINATES = "RawArtifactCoordinates" ;
15
-
16
11
String MAVEN_ARTIFACT_COORDINATES = "MavenArtifactCoordinates" ;
17
-
18
12
String NPM_ARTIFACT_COORDINATES = "NpmArtifactCoordinates" ;
19
-
20
13
String NUGET_ARTIFACT_COORDINATES = "NugetArtifactCoordinates" ;
21
-
22
14
String PYPI_ARTIFACT_COORDINATES = "PypiArtifactCoordinates" ;
23
-
24
15
String RPM_ARTIFACT_COORDINATES = "RpmArtifactCoordinates" ;
25
-
26
16
String ARTIFACT_TAG = "ArtifactTag" ;
27
-
28
17
String ARTIFACT_ID_GROUP = "ArtifactIdGroup" ;
29
-
30
18
String USER = "User" ;
31
-
32
- String TRANSACTION_PROPAGATION = "TransactionPropagationTestVertex" ;
33
19
}
You can’t perform that action at this time.
0 commit comments