Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for Motivation (0.2 sec)

  1. maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml

            <version>2.1-SNAPSHOT</version>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
          <id>test</id>
          <activation>
            <property>
              <name>!skip-mng4416</name>
            </property>
          </activation>
          <build>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 4.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/profile-plugins/pom.xml

            <version>2.4.3</version>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
         <profile>
          <id>standard</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <build>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly2-plugin</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/pom.xml

            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    
      <profiles>
        <profile>
          <id>maven-core-it</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <build>
            <pluginManagement>
              <plugins>
                <plugin>
                  <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/profile-injected-dependencies/pom.xml

          <artifactId>b</artifactId>
          <version>0.1</version>
        </dependency>
      </dependencies>
    
      <profiles>
        <profile>
          <id>mng-1412</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <!-- profile dependencies last, in the order given -->
          <dependencies>
            <dependency>
              <!-- deliberately respecifying this dep to check merging behavior -->
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivator.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.profiles.activation;
    
    import org.apache.maven.model.Profile;
    
    /**
     * ProfileActivator
     */
    @Deprecated
    public interface ProfileActivator {
    
        String ROLE = ProfileActivator.class.getName();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/profiles/ProfileManager.java

     * under the License.
     */
    package org.apache.maven.profiles;
    
    import java.util.List;
    import java.util.Map;
    import java.util.Properties;
    
    import org.apache.maven.model.Profile;
    import org.apache.maven.profiles.activation.ProfileActivationException;
    
    /**
     * ProfileManager
     */
    @Deprecated
    public interface ProfileManager {
    
        void addProfile(Profile profile);
    
        void explicitlyActivate(String profileId);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  7. maven-compat/src/main/mdo/profiles.mdo

              <description>The ID of this build profile, for activation
                purposes.</description>
            </field>
            <field>
              <name>activation</name>
              <version>1.0.0</version>
              <description><![CDATA[The conditional logic which will automatically
                trigger the inclusion of this profile.]]></description>
              <association>
                <type>Activation</type>
              </association>
            </field>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

                    dependencies.create("com.sun.xml.bind:jaxb-core:2.3.0.1"),
                    dependencies.create("com.sun.xml.bind:jaxb-impl:2.3.0.1"),
                    dependencies.create("javax.activation:activation:1.1.1")
            );
        }
    
        private Configuration resolveGuava() {
            Project project = getProject();
            DependencyHandler dependencies = project.getDependencies();
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 26 10:58:32 GMT 2023
    - 13.3K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/profiles/activation/DetectedProfileActivator.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.profiles.activation;
    
    import org.apache.maven.model.Profile;
    
    /**
     * DetectedProfileActivator
     */
    @Deprecated
    public abstract class DetectedProfileActivator implements ProfileActivator {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivationException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.profiles.activation;
    
    /**
     * ProfileActivationException
     */
    @Deprecated
    public class ProfileActivationException extends Exception {
    
        private static final long serialVersionUID = -90820222109103638L;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.2K bytes
    - Viewed (0)
Back to top