Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Automatic Build Integration

  • New plugin
    • New plugins need a pom.xml in the plugin's root folder

      Code Block
      languagehtml/xml
      titleplugin pom.xml
      collapsetrue
       <?xml version="1.0" encoding="UTF-8"?>
      <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <modelVersion>4.0.0</modelVersion>
        <parent>
          <groupId>de.cau.cs.kieler</groupId>
          <artifactId>plugins</artifactId>
          <version>0.0.1-SNAPSHOT</version>
        </parent>
        <groupId>de.cau.cs.kieler</groupId>
        <artifactId>de.cau.cs.kieler.core</artifactId>
        <version>0.7.0-SNAPSHOT</version>
        <packaging>eclipse-plugin</packaging>
      </project>
      
      
    • Make sure that <version>
Warning

This section hasn't been written yet.

...