| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | <?xml version="1.0"?><project	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">	<modelVersion>4.0.0</modelVersion>	<parent>		<groupId>com.ym</groupId>		<artifactId>mec</artifactId>		<version>1.0</version>	</parent>	<artifactId>snakerflowy</artifactId>	<name>snakerflowy</name>	<url>http://maven.apache.org</url>	<properties>		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>	</properties>	<dependencies>		<dependency>			<groupId>org.springframework.boot</groupId>			<artifactId>spring-boot-starter-test</artifactId>			<scope>test</scope>		</dependency>		<dependency>			<groupId>com.alibaba</groupId>			<artifactId>druid-spring-boot-starter</artifactId>		</dependency>		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-jdbc</artifactId>		</dependency>		<dependency>			<groupId>mysql</groupId>			<artifactId>mysql-connector-java</artifactId>		</dependency>		<dependency>			<groupId>de.odysseus.juel</groupId>			<artifactId>juel</artifactId>			<version>2.1.2</version>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>commons-dbutils</groupId>			<artifactId>commons-dbutils</artifactId>			<version>1.7</version>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>commons-beanutils</groupId>			<artifactId>commons-beanutils</artifactId>		</dependency>		<dependency>			<groupId>com.fasterxml.jackson.core</groupId>			<artifactId>jackson-databind</artifactId>		</dependency>		<dependency>			<groupId>com.ym</groupId>			<artifactId>mec-util</artifactId>		</dependency>		<dependency>			<groupId>org.apache.commons</groupId>			<artifactId>commons-dbcp2</artifactId>			<scope>provided</scope>		</dependency>	</dependencies></project>
 |