Authored by hugufei

修改pom

Showing 1 changed file with 39 additions and 24 deletions
@@ -15,30 +15,45 @@ @@ -15,30 +15,45 @@
15 15
16 <dependencies> 16 <dependencies>
17 <dependency> 17 <dependency>
18 - <groupId>com.yoho.search</groupId>  
19 - <artifactId>search-service</artifactId>  
20 - </dependency> 18 + <groupId>com.yoho.search</groupId>
  19 + <artifactId>search-dal</artifactId>
  20 + </dependency>
  21 + <dependency>
  22 + <groupId>com.yoho.search</groupId>
  23 + <artifactId>search-service</artifactId>
  24 + </dependency>
  25 + <dependency>
  26 + <groupId>com.yoho.search</groupId>
  27 + <artifactId>search-core</artifactId>
  28 + </dependency>
  29 + <dependency>
  30 + <groupId>org.apache.commons</groupId>
  31 + <artifactId>commons-pool2</artifactId>
  32 + <version>2.3</version>
  33 + </dependency>
21 </dependencies> 34 </dependencies>
  35 +
  36 + <build>
  37 + <finalName>yoho-search</finalName>
  38 + <plugins>
  39 + <plugin>
  40 + <groupId>com.yoho.tools</groupId>
  41 + <artifactId>maven-autoconfig-plugin</artifactId>
  42 + <version>1.0.0-SNAPSHOT</version>
  43 + <configuration>
  44 + <exploding>true</exploding>
  45 + </configuration>
  46 + <executions>
  47 + <execution>
  48 + <phase>package</phase>
  49 + <goals>
  50 + <goal>autoconfig</goal>
  51 + </goals>
  52 + </execution>
  53 + </executions>
  54 + </plugin>
  55 + </plugins>
  56 + </build>
  57 +
22 58
23 - <build>  
24 - <finalName>yoho-search</finalName>  
25 - <plugins>  
26 - <plugin>  
27 - <groupId>com.yoho.tools</groupId>  
28 - <artifactId>maven-autoconfig-plugin</artifactId>  
29 - <version>1.0.0-SNAPSHOT</version>  
30 - <configuration>  
31 - <exploding>true</exploding>  
32 - </configuration>  
33 - <executions>  
34 - <execution>  
35 - <phase>package</phase>  
36 - <goals>  
37 - <goal>autoconfig</goal>  
38 - </goals>  
39 - </execution>  
40 - </executions>  
41 - </plugin>  
42 - </plugins>  
43 - </build>  
44 </project> 59 </project>