| 
									
										
										
										
											2022-03-09 02:08:03 +00:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <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"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <!-- Maven configuration for this as a standalone project --> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <properties> | 
					
						
							|  |  |  |     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
					
						
							| 
									
										
										
										
											2023-10-26 10:30:45 +00:00
										 |  |  |     <maven.compiler.source>21</maven.compiler.source> | 
					
						
							|  |  |  |     <maven.compiler.target>21</maven.compiler.target> | 
					
						
							| 
									
										
										
										
											2024-08-08 09:36:20 +00:00
										 |  |  |     <planetiler.version>0.8.3-SNAPSHOT</planetiler.version> | 
					
						
							| 
									
										
										
										
											2024-10-23 10:14:58 +00:00
										 |  |  |     <junit.version>5.11.3</junit.version> | 
					
						
							| 
									
										
										
										
											2022-03-09 02:08:03 +00:00
										 |  |  |     <!-- Replace this with the main class for the profile you add --> | 
					
						
							|  |  |  |     <mainClass>com.onthegomap.planetiler.examples.BikeRouteOverlay</mainClass> | 
					
						
							|  |  |  |   </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <groupId>com.onthegomap.planetiler</groupId> | 
					
						
							|  |  |  |   <artifactId>planetiler-examples</artifactId> | 
					
						
							|  |  |  |   <version>HEAD</version> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <name>Example Planetiler Project</name> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <repositories> | 
					
						
							|  |  |  |     <!-- Planetiler depends on geotools for shapefile processing, which is not in maven central. Add here: --> | 
					
						
							|  |  |  |     <repository> | 
					
						
							|  |  |  |       <id>osgeo</id> | 
					
						
							|  |  |  |       <name>OSGeo Release Repository</name> | 
					
						
							|  |  |  |       <url>https://repo.osgeo.org/repository/release/</url> | 
					
						
							|  |  |  |       <snapshots> | 
					
						
							|  |  |  |         <enabled>false</enabled> | 
					
						
							|  |  |  |       </snapshots> | 
					
						
							|  |  |  |       <releases> | 
					
						
							|  |  |  |         <enabled>true</enabled> | 
					
						
							|  |  |  |       </releases> | 
					
						
							|  |  |  |     </repository> | 
					
						
							|  |  |  |     <repository> | 
					
						
							|  |  |  |       <id>nexus-snapshots</id> | 
					
						
							|  |  |  |       <name>Nexus SNAPSHOT Repository</name> | 
					
						
							|  |  |  |       <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> | 
					
						
							|  |  |  |       <snapshots> | 
					
						
							|  |  |  |         <enabled>true</enabled> | 
					
						
							|  |  |  |       </snapshots> | 
					
						
							|  |  |  |       <releases> | 
					
						
							|  |  |  |         <enabled>false</enabled> | 
					
						
							|  |  |  |       </releases> | 
					
						
							|  |  |  |     </repository> | 
					
						
							|  |  |  |   </repositories> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <dependencies> | 
					
						
							|  |  |  |     <dependency> | 
					
						
							|  |  |  |       <groupId>com.onthegomap.planetiler</groupId> | 
					
						
							|  |  |  |       <artifactId>planetiler-core</artifactId> | 
					
						
							|  |  |  |       <version>${planetiler.version}</version> | 
					
						
							|  |  |  |     </dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <!-- To use test utilities: --> | 
					
						
							|  |  |  |     <dependency> | 
					
						
							|  |  |  |       <groupId>com.onthegomap.planetiler</groupId> | 
					
						
							|  |  |  |       <artifactId>planetiler-core</artifactId> | 
					
						
							|  |  |  |       <version>${planetiler.version}</version> | 
					
						
							|  |  |  |       <type>test-jar</type> | 
					
						
							|  |  |  |       <scope>test</scope> | 
					
						
							|  |  |  |     </dependency> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dependency> | 
					
						
							|  |  |  |       <groupId>org.junit.jupiter</groupId> | 
					
						
							|  |  |  |       <artifactId>junit-jupiter-api</artifactId> | 
					
						
							|  |  |  |       <version>${junit.version}</version> | 
					
						
							|  |  |  |       <scope>test</scope> | 
					
						
							|  |  |  |     </dependency> | 
					
						
							|  |  |  |   </dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <build> | 
					
						
							|  |  |  |     <plugins> | 
					
						
							|  |  |  |       <plugin> | 
					
						
							|  |  |  |         <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |         <artifactId>maven-surefire-plugin</artifactId> | 
					
						
							| 
									
										
										
										
											2024-11-04 11:06:26 +00:00
										 |  |  |         <version>3.5.2</version> | 
					
						
							| 
									
										
										
										
											2022-03-09 02:08:03 +00:00
										 |  |  |       </plugin> | 
					
						
							|  |  |  |       <plugin> | 
					
						
							|  |  |  |         <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |         <artifactId>maven-failsafe-plugin</artifactId> | 
					
						
							| 
									
										
										
										
											2024-10-07 09:16:42 +00:00
										 |  |  |         <version>3.5.1</version> | 
					
						
							| 
									
										
										
										
											2022-03-09 02:08:03 +00:00
										 |  |  |       </plugin> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       <!-- Create an executable jar from "mvn package" goal --> | 
					
						
							|  |  |  |       <plugin> | 
					
						
							|  |  |  |         <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |         <artifactId>maven-assembly-plugin</artifactId> | 
					
						
							| 
									
										
										
										
											2024-03-19 10:05:30 +00:00
										 |  |  |         <version>3.7.1</version> | 
					
						
							| 
									
										
										
										
											2022-03-09 02:08:03 +00:00
										 |  |  |         <dependencies> | 
					
						
							|  |  |  |           <dependency> | 
					
						
							|  |  |  |             <groupId>com.onthegomap.planetiler</groupId> | 
					
						
							|  |  |  |             <artifactId>planetiler-core</artifactId> | 
					
						
							|  |  |  |             <version>${planetiler.version}</version> | 
					
						
							|  |  |  |           </dependency> | 
					
						
							|  |  |  |         </dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <configuration> | 
					
						
							|  |  |  |           <archive> | 
					
						
							|  |  |  |             <manifestEntries> | 
					
						
							|  |  |  |               <Multi-Release>true</Multi-Release> | 
					
						
							|  |  |  |             </manifestEntries> | 
					
						
							|  |  |  |             <manifest> | 
					
						
							|  |  |  |               <mainClass>${mainClass}</mainClass> | 
					
						
							|  |  |  |             </manifest> | 
					
						
							|  |  |  |           </archive> | 
					
						
							|  |  |  |           <descriptorRefs> | 
					
						
							|  |  |  |             <descriptorRef>with-deps</descriptorRef> | 
					
						
							|  |  |  |           </descriptorRefs> | 
					
						
							|  |  |  |         </configuration> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <executions> | 
					
						
							|  |  |  |           <execution> | 
					
						
							|  |  |  |             <id>make-assembly</id> | 
					
						
							|  |  |  |             <phase>package</phase> | 
					
						
							|  |  |  |             <goals> | 
					
						
							|  |  |  |               <goal>single</goal> | 
					
						
							|  |  |  |             </goals> | 
					
						
							|  |  |  |           </execution> | 
					
						
							|  |  |  |         </executions> | 
					
						
							|  |  |  |       </plugin> | 
					
						
							|  |  |  |     </plugins> | 
					
						
							|  |  |  |   </build> | 
					
						
							|  |  |  | </project> |