Kulyutmaz is a project developed for the regional TUBITAK competition's programming field thart aims to create a more advanced phishing e-mail detection algorithm using website content checking and a neural network that we have trained.
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.

46 lines
1.8 KiB

4 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <actions>
  3. <action>
  4. <actionName>run</actionName>
  5. <packagings>
  6. <packaging>jar</packaging>
  7. </packagings>
  8. <goals>
  9. <goal>process-classes</goal>
  10. <goal>org.codehaus.mojo:exec-maven-plugin:1.5.0:exec</goal>
  11. </goals>
  12. <properties>
  13. <exec.args>-classpath %classpath com.yigitcolakoglu.kulyutmaz.Control_Panel</exec.args>
  14. <exec.executable>java</exec.executable>
  15. </properties>
  16. </action>
  17. <action>
  18. <actionName>debug</actionName>
  19. <packagings>
  20. <packaging>jar</packaging>
  21. </packagings>
  22. <goals>
  23. <goal>process-classes</goal>
  24. <goal>org.codehaus.mojo:exec-maven-plugin:1.5.0:exec</goal>
  25. </goals>
  26. <properties>
  27. <exec.args>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath com.yigitcolakoglu.kulyutmaz.Control_Panel</exec.args>
  28. <exec.executable>java</exec.executable>
  29. <jpda.listen>true</jpda.listen>
  30. </properties>
  31. </action>
  32. <action>
  33. <actionName>profile</actionName>
  34. <packagings>
  35. <packaging>jar</packaging>
  36. </packagings>
  37. <goals>
  38. <goal>process-classes</goal>
  39. <goal>org.codehaus.mojo:exec-maven-plugin:1.5.0:exec</goal>
  40. </goals>
  41. <properties>
  42. <exec.args>-classpath %classpath com.yigitcolakoglu.kulyutmaz.Control_Panel</exec.args>
  43. <exec.executable>java</exec.executable>
  44. </properties>
  45. </action>
  46. </actions>