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.
 
 
 
 
 
 

43 lines
1.3 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>3.8.1</version>
  15. <scope>test</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.eclipse.jdt</groupId>
  19. <artifactId>core</artifactId>
  20. <version>3.3.0-v_771</version>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.codehaus.mojo</groupId>
  27. <artifactId>exec-maven-plugin</artifactId>
  28. <version>1.2.1</version>
  29. <configuration>
  30. <mainClass>com.bitshift.parsing.Parse</mainClass>
  31. <arguments>
  32. </arguments>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>