Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Lannon (0.18 sec)

  1. pom.xml

    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<failOnError>false</failOnError>
    					<ignored>
    						<difference>
    							<!-- seems to be a clirr bug that it cannot handle the different inherited 
    								return types -->
    							<className>**</className>
    							<differenceType>7006</differenceType>
    							<method>*</method>
    							<from>*</from>
    							<to>*</to>
    XML
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
  2. maven-core/src/test/resources/projects/project.xml

      <organization>
        <name>Apache Software Foundation</name>
        <url>http://apache.org/</url>
        <logo>/images/jakarta-logo-blue.gif</logo>
      </organization>
    
      <scm>
        <connection>anon-connection</connection>
        <developerConnection>developer-connection</developerConnection>
        <url>repository-url</url>
      </scm>
    
      <mailingLists>
        <mailingList>
          <name>Maven User List</name>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.6K bytes
    - Viewed (0)
  3. api/maven-api-settings/src/main/mdo/settings.mdo

        private String sourceLevel = USER_LEVEL;
        private boolean sourceLevelSet = false;
    
        public void setSourceLevel(String sourceLevel) {
            if (sourceLevelSet) {
                throw new IllegalStateException("Cannot reset sourceLevel attribute; it is already set to: " + sourceLevel);
            } else if (!(USER_LEVEL.equals(sourceLevel) || PROJECT_LEVEL.equals(sourceLevel)  || GLOBAL_LEVEL.equals(sourceLevel))) {
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment.xml

      <url>http://maven.apache.org/</url>
    
      <organization>
        <name>Apache Software Foundation</name>
        <url>http://apache.org/</url>
      </organization>
    
      <scm>
        <connection>anon-connection</connection>
        <developerConnection>developer-connection</developerConnection>
        <url>repository-url</url>
      </scm>
    
      <mailingLists>
        <mailingList>
          <name>Maven User List</name>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 3.6K bytes
    - Viewed (0)
  5. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

            private boolean sourceLevelSet = false;
    
            public void setSourceLevel(String sourceLevel) {
                if (sourceLevelSet) {
                    throw new IllegalStateException("Cannot reset sourceLevel attribute; it is already set to: " + sourceLevel);
                } else if (!(USER_LEVEL.equals(sourceLevel) || GLOBAL_LEVEL.equals(sourceLevel))) {
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/fully-populated-child.xml

      <organization>
        <name>Apache Software Foundation</name>
        <url>http://apache.org/</url>
        <logo>/images/jakarta-logo-blue.gif</logo>
      </organization>
    
      <scm>
        <connection>anon-connection</connection>
        <developerConnection>developer-connection</developerConnection>
        <url>repository-url</url>
      </scm>
    
      <mailingLists>
        <mailingList>
          <name>Maven User List</name>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.7K bytes
    - Viewed (0)
Back to top