Skip to content

Commit 6d7966a

Browse files
author
2b3c511
committed
rat +1
1 parent c7308a0 commit 6d7966a

File tree

3 files changed

+60
-6
lines changed

3 files changed

+60
-6
lines changed

examples/iotdb-spring-boot-start/pom.xml

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<!--
3+
4+
Licensed to the Apache Software Foundation (ASF) under one
5+
or more contributor license agreements. See the NOTICE file
6+
distributed with this work for additional information
7+
regarding copyright ownership. The ASF licenses this file
8+
to you under the Apache License, Version 2.0 (the
9+
"License"); you may not use this file except in compliance
10+
with the License. You may obtain a copy of the License at
11+
12+
http://www.apache.org/licenses/LICENSE-2.0
13+
14+
Unless required by applicable law or agreed to in writing,
15+
software distributed under the License is distributed on an
16+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+
KIND, either express or implied. See the License for the
18+
specific language governing permissions and limitations
19+
under the License.
20+
21+
-->
22+
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
423
<modelVersion>4.0.0</modelVersion>
524
<parent>
625
<groupId>org.springframework.boot</groupId>
726
<artifactId>spring-boot-starter-parent</artifactId>
827
<version>3.4.3</version>
9-
<relativePath/> <!-- lookup parent from repository -->
28+
<relativePath/>
29+
<!-- lookup parent from repository -->
1030
</parent>
1131
<groupId>org.apache.iotdb</groupId>
1232
<artifactId>iotdb-spring-boot-start-example</artifactId>
@@ -21,7 +41,6 @@
2141
<groupId>org.springframework.boot</groupId>
2242
<artifactId>spring-boot-starter</artifactId>
2343
</dependency>
24-
2544
<dependency>
2645
<groupId>org.springframework.boot</groupId>
2746
<artifactId>spring-boot-starter-test</artifactId>
@@ -33,7 +52,6 @@
3352
<version>2.0.2-SNAPSHOT</version>
3453
</dependency>
3554
</dependencies>
36-
3755
<build>
3856
<plugins>
3957
<plugin>
@@ -42,5 +60,4 @@
4260
</plugin>
4361
</plugins>
4462
</build>
45-
4663
</project>

examples/iotdb-spring-boot-start/src/test/java/org/apache/iotdb/iotdbspringbootstartexample/IotdbSpringBootStartApplicationTests.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
118
package org.apache.iotdb.iotdbspringbootstartexample;
219

320
import org.apache.iotdb.iotdbspringbootstartexample.service.IoTDBService;

iotdb-spring-boot-starter/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Licensed to the Apache Software Foundation (ASF) under one
5+
or more contributor license agreements. See the NOTICE file
6+
distributed with this work for additional information
7+
regarding copyright ownership. The ASF licenses this file
8+
to you under the Apache License, Version 2.0 (the
9+
"License"); you may not use this file except in compliance
10+
with the License. You may obtain a copy of the License at
11+
12+
http://www.apache.org/licenses/LICENSE-2.0
13+
14+
Unless required by applicable law or agreed to in writing,
15+
software distributed under the License is distributed on an
16+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+
KIND, either express or implied. See the License for the
18+
specific language governing permissions and limitations
19+
under the License.
20+
21+
-->
222
<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">
323
<modelVersion>4.0.0</modelVersion>
424
<parent>

0 commit comments

Comments
 (0)