aboutsummaryrefslogtreecommitdiffstats
path: root/blueprints-processor/plugin/generator-provider/src/test/resources/service_templates/configdata_with_null.json
blob: d08acb17c635ec3060a788ffe5db6fd4bd71ece4 (plain)
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
{
	"node0_hostname": null,
	"node0_backup_router_address": "2001:2001:2001:2001:2001:2001:2001:2001",
	"servers": [
		"Server1",
		"Server2",
		"Server3"
	],
	"tacplus-servers": [
		{
			"tacplus-server-name": null,
			"tacplus-server-source-address": "enc-dsdsasa1"
		},
		{
			"tacplus-server-name": "tacplus-server-name2",
			"tacplus-server-source-address": "enc-dsdsasa2"
		}
	],
	"classes": [
		{
			"name": "superuser-class",
			"idle-timeout": 5,
			"permissions": "all"
		},
		{
			"name": "tacacs-adv-class",
			"idle-timeout": 5
		},
		{
			"name": "tacacs-base-class",
			"idle-timeout": 5
		}
	],
	"system-password": "teamops-system-password",
	"root-password": "teamops-root-password"
}
"><groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> <artifactId>${application.name}-provider</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>maven-repo-zip</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <attach>true</attach> <finalName>stage/${application.name}-${project.version}</finalName> <descriptors> <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> </descriptors> <appendAssemblyId>true</appendAssemblyId> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-nested-dependencies</id> <goals> <goal>copy-dependencies</goal> </goals> <phase>prepare-package</phase> <configuration> <transitive>true</transitive> <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> <useRepositoryLayout>true</useRepositoryLayout> <addParentPoms>false</addParentPoms> <copyPom>false</copyPom> <!--<includeArtifactIds>sdnr-wt-apigateway-provider,${application.name}</includeArtifactIds> --> <!--<scope>provided</scope> --> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>