A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

73 lines
3.0 KiB

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.bitshift.parsing</groupId>
  5. <artifactId>parsing</artifactId>
  6. <packaging>jar</packaging>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>parsing</name>
  9. <url>http://maven.apache.org</url>
  10. <dependencies>
  11. <dependency>
  12. <groupId>junit</groupId>
  13. <artifactId>junit</artifactId>
  14. <version>4.11</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.eclipse.jdt</groupId>
  18. <artifactId>org.eclipse.jdt.core</artifactId>
  19. <version>3.7.1</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.google.guava</groupId>
  23. <artifactId>guava</artifactId>
  24. <version>17.0</version>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.codehaus.mojo</groupId>
  31. <artifactId>exec-maven-plugin</artifactId>
  32. <version>1.2.1</version>
  33. <configuration>
  34. <mainClass>com.bitshift.parsing.Parse</mainClass>
  35. <arguments>
  36. </arguments>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <artifactId>maven-assembly-plugin</artifactId>
  41. <version>2.4</version>
  42. <executions>
  43. <execution>
  44. <id>make-assembly</id>
  45. <phase>package</phase>
  46. <goals>
  47. <goal>single</goal>
  48. </goals>
  49. <configuration>
  50. <archive>
  51. <manifest>
  52. <addClasspath>true</addClasspath>
  53. <mainClass>com.bitshift.parsing.Parse</mainClass>
  54. </manifest>
  55. </archive>
  56. <descriptorRefs>
  57. <descriptorRef>jar-with-dependencies</descriptorRef>
  58. </descriptorRefs>
  59. <outputDirectory>${project.basedir}</outputDirectory>
  60. <finalName>${project.artifactId}</finalName>
  61. <appendAssemblyId>false</appendAssemblyId>
  62. </configuration>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>