修改pom版本

master
星期八 5 years ago
parent f87a2f4cd5
commit d7254d460c
  1. 2
      panda-all/pom.xml
  2. 2
      panda-aop/pom.xml
  3. 2
      panda-aop/src/test/java/org/panda/aop/util/InterfaceProxyFactoryUtilTest.java
  4. 2
      panda-beans/pom.xml
  5. 2
      panda-code/pom.xml
  6. 2
      panda-jdbc/pom.xml
  7. 2
      panda-jdbc/src/test/java/org/panda/jdbc/JdbcUtilsTest.java
  8. 2
      panda-web/pom.xml

@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>panda</artifactId> <artifactId>panda</artifactId>
<groupId>org.panda</groupId> <groupId>org.panda</groupId>
<version>1.0-SNAPSHOT</version> <version>2.0</version>
</parent> </parent>
<packaging>jar</packaging> <packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>panda</artifactId> <artifactId>panda</artifactId>
<groupId>org.panda</groupId> <groupId>org.panda</groupId>
<version>1.0-SNAPSHOT</version> <version>2.0</version>
</parent> </parent>
<version>${project.version}</version> <version>${project.version}</version>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

@ -6,11 +6,9 @@ import static org.junit.Assert.*;
public class InterfaceProxyFactoryUtilTest { public class InterfaceProxyFactoryUtilTest {
@org.junit.Test
public void newMapperProxy() { public void newMapperProxy() {
} }
@org.junit.Test
public void invoke() { public void invoke() {
HelloService helloService = InterfaceProxyFactoryUtil.newMapperProxy(HelloService.class); HelloService helloService = InterfaceProxyFactoryUtil.newMapperProxy(HelloService.class);
helloService.sayHello("nihoa"); helloService.sayHello("nihoa");

@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>panda</artifactId> <artifactId>panda</artifactId>
<groupId>org.panda</groupId> <groupId>org.panda</groupId>
<version>1.0-SNAPSHOT</version> <version>2.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>panda</artifactId> <artifactId>panda</artifactId>
<groupId>org.panda</groupId> <groupId>org.panda</groupId>
<version>1.0-SNAPSHOT</version> <version>2.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>panda-code</artifactId> <artifactId>panda-code</artifactId>

@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>panda</artifactId> <artifactId>panda</artifactId>
<groupId>org.panda</groupId> <groupId>org.panda</groupId>
<version>1.0-SNAPSHOT</version> <version>2.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

@ -13,14 +13,12 @@ public class JdbcUtilsTest {
private JdbcUtils jdbcUtils=new JdbcUtils("com.mysql.jdbc.Driver","jdbc:mysql://localhost:3306/ssm?useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8","root","mysql"); private JdbcUtils jdbcUtils=new JdbcUtils("com.mysql.jdbc.Driver","jdbc:mysql://localhost:3306/ssm?useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8","root","mysql");
@Test
public void getDBInfo() { public void getDBInfo() {
DbInfo dbInfo = jdbcUtils.getDBInfo(); DbInfo dbInfo = jdbcUtils.getDBInfo();
System.out.println(dbInfo); System.out.println(dbInfo);
} }
@Test
public void getAllTable() { public void getAllTable() {
List<Table> tableList = jdbcUtils.getAllTable(); List<Table> tableList = jdbcUtils.getAllTable();
tableList.forEach((table)->{ tableList.forEach((table)->{

@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>panda</artifactId> <artifactId>panda</artifactId>
<groupId>org.panda</groupId> <groupId>org.panda</groupId>
<version>1.0-SNAPSHOT</version> <version>2.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

Loading…
Cancel
Save