diff options
author | Pavel Paroulek <pavel.paroulek@orange.com> | 2019-05-13 20:23:31 +0200 |
---|---|---|
committer | Pavel Paroulek <pavel.paroulek@orange.com> | 2019-05-14 10:17:34 +0200 |
commit | 48d76b552efaa7f3ac068519a0c06ab1ad65f2ea (patch) | |
tree | 45d7232f78b63fc704803426de265ffc56381dab /src | |
parent | 1722ddc1b782c79d881a11eb06df66c6e2ab6029 (diff) |
Maven based building
Building the project (docker, user interface) via maven
Change-Id: I94ef02b435f0684cedbafb63b5daeb44abfe22cc
Issue-ID: AAI-531
Signed-off-by: Pavel Paroulek <pavel.paroulek@orange.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main/resources/application.properties | 18 | ||||
-rw-r--r-- | src/main/resources/docker-assembly.xml | 23 | ||||
-rw-r--r-- | src/main/resources/etc/auth/aai_keystore | bin | 0 -> 4928 bytes | |||
-rw-r--r-- | src/main/resources/etc/auth/realm.properties | 13 |
4 files changed, 50 insertions, 4 deletions
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 07d5a00..c152118 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -7,7 +7,7 @@ schema.source.name=onap schema.nodes.location=${server.local.startpath}/schema/${schema.source.name}/oxm/ schema.edges.location=${server.local.startpath}/schema/${schema.source.name}/dbedgerules/ -server.local.startpath=src/main/resources/ +server.local.startpath=${graphgraph.startpath} schema.ingest.file=${server.local.startpath}/application.properties # Schema Version Related Attributes @@ -29,10 +29,20 @@ schema.version.edge.label.start=v12 # Specifies the version that the application should default to schema.version.api.default=v16 schema.translator.list=schema-service -schema.service.base.url=http://localhost:8452/aai/schema-service/v1/ -schema.service.client=no-auth +schema.service.base.url=https://localhost:8452/aai/schema-service/v1/ +# schema.service.client=no-auth schema.service.nodes.endpoint=nodes?version= schema.service.edges.endpoint=edgerules?version= schema.service.versions.endpoint=versions -schema.service.versions.override=false
\ No newline at end of file +schema.service.versions.override=false + +schema.service.ssl.enabled-protocols=TLSv1.1,TLSv1.2 +schema.service.ssl.key-store=${server.local.startpath}etc/auth/aai_keystore +schema.service.ssl.key-store-password=changeit +schema.service.ssl.trust-store=${server.local.startpath}etc/auth/aai_keystore +schema.service.ssl.trust-store-password=changeit +schema.service.ssl.client-auth=want +schema.service.ssl.key-store-type=JKS + +schema.service.client=one-way-ssl
\ No newline at end of file diff --git a/src/main/resources/docker-assembly.xml b/src/main/resources/docker-assembly.xml new file mode 100644 index 0000000..afd1970 --- /dev/null +++ b/src/main/resources/docker-assembly.xml @@ -0,0 +1,23 @@ +<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd"> + <id>distribution</id> + <formats> + <format>jar</format> + </formats> + <fileSets> + <fileSet> + <directory>src/main/resources/etc/auth</directory> + <outputDirectory>/etc/auth</outputDirectory> + <filtered>false</filtered> + </fileSet> + </fileSets> + +<files> + <file> + <source>target/${project.artifactId}-${project.version}.${project.packaging}</source> + <outputDirectory>/</outputDirectory> + <filtered>false</filtered> + </file> +</files> +</assembly>
\ No newline at end of file diff --git a/src/main/resources/etc/auth/aai_keystore b/src/main/resources/etc/auth/aai_keystore Binary files differnew file mode 100644 index 0000000..16d93a7 --- /dev/null +++ b/src/main/resources/etc/auth/aai_keystore diff --git a/src/main/resources/etc/auth/realm.properties b/src/main/resources/etc/auth/realm.properties new file mode 100644 index 0000000..f0e0172 --- /dev/null +++ b/src/main/resources/etc/auth/realm.properties @@ -0,0 +1,13 @@ +# format : username: password[,rolename ...] +# default username/password: AAI/AAI, MSO/MSO, ModelLoader/ModelLoader... +AAI:OBF:1gfr1ev31gg7,admin +MSO:OBF:1jzx1lz31k01,admin +SDNC:OBF:1itr1i0l1i151isv,admin +DCAE:OBF:1g8u1f9d1f991g8w,admin +POLICY:OBF:1mk61i171ima1im41i0j1mko,admin +ASDC:OBF:1f991j0u1j001f9d,admin +VID:OBF:1jm91i0v1jl9,admin +APPC:OBF:1f991ksf1ksf1f9d,admin +ModelLoader:OBF:1qvu1v2h1sov1sar1wfw1j7j1wg21saj1sov1v1x1qxw,admin +AaiUI:OBF:1gfr1p571unz1p4j1gg7,admin +OOF:OBF:1img1ke71ily,admin |