|
5 | 5 | <parent> |
6 | 6 | <groupId>org.springframework.boot</groupId> |
7 | 7 | <artifactId>spring-boot-starter-parent</artifactId> |
8 | | - <version>2.2.7.RELEASE</version> |
| 8 | + <version>2.3.1.RELEASE</version> |
9 | 9 | <relativePath/> <!-- lookup parent from repository --> |
10 | 10 | </parent> |
11 | 11 | <groupId>com.rakeshv</groupId> |
12 | 12 | <artifactId>network-overview</artifactId> |
13 | | - <version>0.0.1-SNAPSHOT</version> |
| 13 | + <version>0.0.1</version> |
14 | 14 | <name>network-overview</name> |
15 | 15 | <description>Demo project for Spring Boot</description> |
16 | 16 |
|
|
19 | 19 | </properties> |
20 | 20 |
|
21 | 21 | <dependencies> |
| 22 | + <dependency> |
| 23 | + <groupId>org.neo4j.springframework.data</groupId> |
| 24 | + <artifactId>spring-data-neo4j-rx</artifactId> |
| 25 | + <version>1.0.0-beta01</version> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>org.neo4j.springframework.data</groupId> |
| 29 | + <artifactId>spring-data-neo4j-rx-spring-boot-starter</artifactId> |
| 30 | + <version>1.1.1</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>org.neo4j.springframework.data</groupId> |
| 34 | + <artifactId>spring-data-neo4j-rx-spring-boot-test-autoconfigure</artifactId> |
| 35 | + <version>1.1.1</version> |
| 36 | + <scope>test</scope> |
| 37 | + </dependency> |
22 | 38 | <dependency> |
23 | 39 | <groupId>org.springframework.boot</groupId> |
24 | 40 | <artifactId>spring-boot-starter-actuator</artifactId> |
|
116 | 132 | </plugins> |
117 | 133 | </build> |
118 | 134 |
|
| 135 | + <profiles> |
| 136 | + <profile> |
| 137 | + <id>revisionMissing</id> |
| 138 | + <activation> |
| 139 | + <property> |
| 140 | + <name>!revision</name> |
| 141 | + </property> |
| 142 | + </activation> |
| 143 | + <properties> |
| 144 | + <revision>1.1.1</revision> |
| 145 | + </properties> |
| 146 | + </profile> |
| 147 | + <profile> |
| 148 | + <id>sha1Missing</id> |
| 149 | + <activation> |
| 150 | + <property> |
| 151 | + <name>!sha</name> |
| 152 | + </property> |
| 153 | + </activation> |
| 154 | + <properties> |
| 155 | + <sha1></sha1> |
| 156 | + </properties> |
| 157 | + </profile> |
| 158 | + <profile> |
| 159 | + <id>changelistMissing</id> |
| 160 | + <activation> |
| 161 | + <property> |
| 162 | + <name>!changelist</name> |
| 163 | + </property> |
| 164 | + </activation> |
| 165 | + <properties> |
| 166 | + <changelist></changelist> |
| 167 | + </properties> |
| 168 | + </profile> |
| 169 | + </profiles> |
119 | 170 | </project> |
0 commit comments