aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.http.test
ModeNameSize
-rw-r--r--.classpath681logstatsplain
-rw-r--r--.gitignore13logstatsplain
-rw-r--r--.project849logstatsplain
d---------.settings505logstatsplain
-rw-r--r--BUILD1090logstatsplain
d---------META-INF39logstatsplain
-rw-r--r--build.properties163logstatsplain
-rw-r--r--org.eclipse.jgit.http--All-Tests.launch1082logstatsplain
-rw-r--r--plugin.properties55logstatsplain
-rw-r--r--pom.xml3541logstatsplain
d---------src / org / eclipse / jgit / http / test30logstatsplain
d---------tst / org / eclipse / jgit30logstatsplain
y */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectj-parent</artifactId>
    <version>1.9.21.1-SNAPSHOT</version>
  </parent>

  <artifactId>docs</artifactId>

  <profiles>
    <profile>
      <id>create-docs</id>
      <activation>
        <property>
          <name>createDocs</name>
          <value>true</value>
        </property>
      </activation>

      <build>
        <plugins>
          <plugin>
            <groupId>org.asciidoctor</groupId>
            <artifactId>asciidoctor-maven-plugin</artifactId>
            <configuration>
              <sourceDirectory>${project.basedir}</sourceDirectory>
              <preserveDirectories>true</preserveDirectories>
              <relativeBaseDir>true</relativeBaseDir>
              <resources>
                <resource>
                  <!-- Mandatory, even though identical to 'sourceDirectory' -->
                  <directory>${project.basedir}</directory>
                  <excludes>
                    <!-- Generally excluded file extensions -->
                    <exclude>**/*.doc</exclude>
                    <exclude>**/*.vsd</exclude>
                    <!-- Files excluded in root directory -->
                    <exclude>*.iml</exclude>
                    <exclude>pom.xml*</exclude>
                    <exclude>build.xml</exclude>
                    <exclude>docs.build.properties</exclude>
                    <!-- Files excluded in subdirectories -->
                    <exclude>developer/*.txt</exclude>
                    <exclude>developer/ajdt/**</exclude>
                    <exclude>developer/ram-disk/**</exclude>
                    <exclude>developer/traces/**</exclude>
                    <exclude>install/**</exclude>
                    <exclude>sandbox/**</exclude>
                    <exclude>src/**</exclude>
                    <exclude>target/**</exclude>
                    <exclude>teaching/**</exclude>
                    <exclude>test/**</exclude>
                  </excludes>
                </resource>
              </resources>
            </configuration>
            <executions>
              <execution>
                <id>create-html-from-asciidoc</id>
                <phase>generate-resources</phase>
                <goals>
                  <goal>process-asciidoc</goal>
                </goals>
              </execution>
              <execution>
                <id>generate-pdf-adk15notebook</id>
                <phase>generate-resources</phase>
                <goals>
                  <goal>process-asciidoc</goal>
                </goals>
                <configuration>
                  <backend>pdf</backend>
                  <sourceDocumentName>adk15notebook/adk15notebook.adoc</sourceDocumentName>
                  <skip>false</skip>
                </configuration>
              </execution>
              <execution>
                <id>generate-pdf-devguide</id>
                <phase>generate-resources</phase>
                <goals>
                  <goal>process-asciidoc</goal>
                </goals>
                <configuration>
                  <backend>pdf</backend>
                  <sourceDocumentName>devguide/devguide.adoc</sourceDocumentName>
                  <skip>false</skip>
                </configuration>
              </execution>
              <execution>
                <id>generate-pdf-pdguide</id>
                <phase>generate-resources</phase>
                <goals>
                  <goal>process-asciidoc</goal>
                </goals>
                <configuration>
                  <backend>pdf</backend>
                  <sourceDocumentName>pdguide/pdguide.adoc</sourceDocumentName>
                  <skip>false</skip>
                </configuration>
              </execution>
              <execution>
                <id>generate-pdf-progguide</id>
                <phase>generate-resources</phase>
                <goals>
                  <goal>process-asciidoc</goal>
                </goals>
                <configuration>
                  <backend>pdf</backend>
                  <sourceDocumentName>progguide/progguide.adoc</sourceDocumentName>
                  <skip>false</skip>
                </configuration>
              </execution>
              <execution>
                <id>generate-pdf-design-overview</id>
                <phase>generate-resources</phase>
                <goals>
                  <goal>process-asciidoc</goal>
                </goals>
                <configuration>
                  <backend>pdf</backend>
                  <sourceDocumentName>developer/design-overview.adoc</sourceDocumentName>
                  <skip>false</skip>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
            <executions>
              <execution>
                <id>copy-docs-to-dist</id>
                <phase>package</phase>
                <goals>
                  <goal>copy-resources</goal>
                </goals>
                <configuration>
                  <outputDirectory>${project.basedir}/../aj-build/dist/docs/doc</outputDirectory>
                  <resources>
                    <resource>
                      <directory>${project.build.directory}/generated-docs</directory>
                      <!-- Exclude HTML content created from asciidoc files irrelevant for the distribution -->
                      <excludes>
                        <!-- Files excluded in root directory -->
                        <exclude>readme-docs-module.html</exclude>
                        <!-- Files excluded in subdirectories -->
                        <exclude>developer/ajdt/**</exclude>
                        <exclude>developer/traces/**</exclude>
                        <exclude>install/**</exclude>
                        <exclude>sandbox/**</exclude>
                        <exclude>teaching/**</exclude>
                        <exclude>test/**</exclude>
                      </excludes>
                    </resource>
                  </resources>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

</project>