|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | | - <parent> |
6 | | - <groupId>org.springframework.boot</groupId> |
7 | | - <artifactId>spring-boot-starter-parent</artifactId> |
8 | | - <version>2.2.1.RELEASE</version> |
9 | | - <relativePath/> <!-- lookup parent from repository --> |
10 | | - </parent> |
11 | 5 | <groupId>io.github.majusko</groupId> |
12 | 6 | <artifactId>pulsar-java-spring-boot-starter</artifactId> |
13 | | - <version>0.0.1-SNAPSHOT</version> |
| 7 | + <version>0.0.2</version> |
14 | 8 | <name>pulsar-java-spring-boot-starter</name> |
15 | 9 | <description>Pulsar connect for Spring Boot</description> |
16 | 10 |
|
17 | 11 | <properties> |
18 | 12 | <java.version>1.8</java.version> |
| 13 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 14 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 15 | + <spring.boot.version>2.2.1.RELEASE</spring.boot.version> |
| 16 | + <apache.pulsar.client.version>2.4.1</apache.pulsar.client.version> |
19 | 17 | </properties> |
20 | 18 |
|
21 | 19 | <dependencies> |
22 | 20 | <dependency> |
23 | 21 | <groupId>org.springframework.boot</groupId> |
24 | 22 | <artifactId>spring-boot-starter</artifactId> |
| 23 | + <version>${spring.boot.version}</version> |
25 | 24 | </dependency> |
26 | 25 |
|
27 | 26 | <dependency> |
28 | 27 | <groupId>org.apache.pulsar</groupId> |
29 | 28 | <artifactId>pulsar-client</artifactId> |
30 | | - <version>2.4.1</version> |
| 29 | + <version>${apache.pulsar.client.version}</version> |
31 | 30 | </dependency> |
32 | 31 |
|
33 | 32 | <dependency> |
34 | 33 | <groupId>org.springframework.boot</groupId> |
35 | 34 | <artifactId>spring-boot-starter-test</artifactId> |
| 35 | + <version>${spring.boot.version}</version> |
36 | 36 | <scope>test</scope> |
37 | 37 | <exclusions> |
38 | 38 | <exclusion> |
|
55 | 55 | <plugin> |
56 | 56 | <groupId>org.springframework.boot</groupId> |
57 | 57 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 58 | + <version>2.1.5.RELEASE</version> |
| 59 | + </plugin> |
| 60 | + |
| 61 | + <plugin> |
| 62 | + <artifactId>maven-compiler-plugin</artifactId> |
| 63 | + <configuration> |
| 64 | + <source>${maven.compiler.source}</source> |
| 65 | + <target>${maven.compiler.target}</target> |
| 66 | + </configuration> |
58 | 67 | </plugin> |
59 | 68 |
|
60 | 69 | <plugin> |
|
0 commit comments