Skip to content

Commit 42c13b7

Browse files
Add SPDX license identifiers to source files
Co-authored-by: Palak Goyal <goyalpalak1806@gmail.com> Signed-off-by: Palak Goyal <goyalpalak1806@gmail.com> Signed-off-by: Yatin Jamwal <yatinjamwal07@gmail.com> Signed-off-by: goyalpalak18 <goyalpalak1806@gmail.com>
1 parent 57eea49 commit 42c13b7

130 files changed

Lines changed: 383 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

dependency-reduced-pom.xml

Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>jp.co.sony.csl.dcoes.apis</groupId>
5+
<artifactId>apis-main</artifactId>
6+
<name>APIS MAIN</name>
7+
<version>3.0.0</version>
8+
<build>
9+
<pluginManagement>
10+
<plugins>
11+
<plugin>
12+
<artifactId>maven-compiler-plugin</artifactId>
13+
<version>3.14.1</version>
14+
<configuration>
15+
<source>1.8</source>
16+
<target>1.8</target>
17+
</configuration>
18+
</plugin>
19+
</plugins>
20+
</pluginManagement>
21+
<plugins>
22+
<plugin>
23+
<artifactId>maven-shade-plugin</artifactId>
24+
<version>3.6.1</version>
25+
<executions>
26+
<execution>
27+
<phase>package</phase>
28+
<goals>
29+
<goal>shade</goal>
30+
</goals>
31+
<configuration>
32+
<transformers>
33+
<transformer>
34+
<manifestEntries>
35+
<Main-Class>jp.co.sony.csl.dcoes.apis.common.util.vertx.ApisLauncher</Main-Class>
36+
<Main-Verticle>jp.co.sony.csl.dcoes.apis.main.util.Starter</Main-Verticle>
37+
</manifestEntries>
38+
</transformer>
39+
<transformer>
40+
<resource>META-INF/services/io.vertx.core.spi.VerticleFactory</resource>
41+
</transformer>
42+
</transformers>
43+
<artifactSet />
44+
<outputFile>${project.build.directory}/${project.artifactId}-${project.version}-fat.jar</outputFile>
45+
</configuration>
46+
</execution>
47+
</executions>
48+
</plugin>
49+
<plugin>
50+
<artifactId>maven-antrun-plugin</artifactId>
51+
<version>3.1.0</version>
52+
<executions>
53+
<execution>
54+
<phase>package</phase>
55+
<goals>
56+
<goal>run</goal>
57+
</goals>
58+
<configuration>
59+
<target>
60+
<property />
61+
<ant />
62+
</target>
63+
</configuration>
64+
</execution>
65+
</executions>
66+
</plugin>
67+
<plugin>
68+
<artifactId>maven-assembly-plugin</artifactId>
69+
<version>3.6.0</version>
70+
<executions>
71+
<execution>
72+
<phase>package</phase>
73+
<goals>
74+
<goal>single</goal>
75+
</goals>
76+
</execution>
77+
</executions>
78+
<configuration>
79+
<appendAssemblyId>false</appendAssemblyId>
80+
<descriptors>
81+
<descriptor>src/main/assembly/distribution.xml</descriptor>
82+
</descriptors>
83+
</configuration>
84+
</plugin>
85+
<plugin>
86+
<artifactId>maven-javadoc-plugin</artifactId>
87+
<version>3.12.0</version>
88+
<configuration>
89+
<author>true</author>
90+
<source>1.8</source>
91+
<show>private</show>
92+
<encoding>UTF-8</encoding>
93+
<charset>UTF-8</charset>
94+
<docencoding>UTF-8</docencoding>
95+
</configuration>
96+
</plugin>
97+
</plugins>
98+
</build>
99+
<dependencies>
100+
<dependency>
101+
<groupId>io.vertx</groupId>
102+
<artifactId>vertx-unit</artifactId>
103+
<version>3.9.16</version>
104+
<scope>test</scope>
105+
</dependency>
106+
<dependency>
107+
<groupId>junit</groupId>
108+
<artifactId>junit</artifactId>
109+
<version>4.13.2</version>
110+
<scope>test</scope>
111+
<exclusions>
112+
<exclusion>
113+
<artifactId>hamcrest-core</artifactId>
114+
<groupId>org.hamcrest</groupId>
115+
</exclusion>
116+
</exclusions>
117+
</dependency>
118+
<dependency>
119+
<groupId>commons-io</groupId>
120+
<artifactId>commons-io</artifactId>
121+
<version>2.21.0</version>
122+
<scope>test</scope>
123+
</dependency>
124+
</dependencies>
125+
<dependencyManagement>
126+
<dependencies>
127+
<dependency>
128+
<groupId>jp.co.sony.csl.dcoes.apis</groupId>
129+
<artifactId>apis-bom</artifactId>
130+
<version>${project.version}</version>
131+
<type>pom</type>
132+
<scope>import</scope>
133+
</dependency>
134+
</dependencies>
135+
</dependencyManagement>
136+
<properties>
137+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
138+
</properties>
139+
</project>

exe/kill.sh

100644100755
File mode changed.

exe/start.sh

100644100755
File mode changed.

exe/start2.sh

100644100755
File mode changed.

exe/start3.sh

100644100755
File mode changed.

exe/start4.sh

100644100755
File mode changed.

exe/stop-kill.sh

100644100755
File mode changed.

exe/stop.sh

100644100755
File mode changed.

src/main/java/jp/co/sony/csl/dcoes/apis/main/app/Apis.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: Apache-2.0
2+
13
package jp.co.sony.csl.dcoes.apis.main.app;
24

35
import io.vertx.core.AbstractVerticle;

src/main/java/jp/co/sony/csl/dcoes/apis/main/app/Helo.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// SPDX-License-Identifier: Apache-2.0
2+
13
package jp.co.sony.csl.dcoes.apis.main.app;
24

35
import io.vertx.core.AbstractVerticle;

0 commit comments

Comments
 (0)