Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for EJB (0.08 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/EjbLifecycleMappingProvider.java

    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    /**
     * {@code ejb} packaging plugins bindings provider for {@code default} lifecycle.
     */
    @Named("ejb")
    @Singleton
    public final class EjbLifecycleMappingProvider extends AbstractLifecycleMappingProvider {
        // START SNIPPET: ejb
        @SuppressWarnings("checkstyle:linelength")
        private static final String[] BINDINGS = {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpPluginTest.groovy

            project.eclipse.wtp {
                component {
                    deployName = 'ejb-jar'
                    property name: 'mood', value: ':-D'
                }
                facet {
                    facet name: 'jst.ejb', version: '3.0'
                }
            }
    
            then:
            project.eclipse.wtp.component.deployName == 'ejb-jar'
            project.eclipse.wtp.component.properties == [new WbProperty('mood', ':-D')]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 08 10:14:49 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/artifact-handlers.apt

    | <<<ejb>>>          |               | <<<jar>>>  | <= type>   | java      | <<<true>>>          |                       |
    *--------------------+---------------+------------+------------+-----------+---------------------+-----------------------+
    | <<<ejb-client>>>   | <<<client>>>  | <<<jar>>>  | <<<ejb>>>  | java      | <<<true>>>          |                       |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 06:12:44 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpFacet.java

        public void facet(Map<String, ?> args) {
            Facet newFacet = ConfigureUtil.configureByMap(args, new Facet());
            List<Facet> newFacets;
            if ("jst.ejb".equals(newFacet.getName())) {
                newFacets = Arrays.asList(new Facet(Facet.FacetType.fixed, "jst.ejb", null), newFacet);
            } else {
                newFacets = Collections.singletonList(newFacet);
            }
            facets = Lists.newArrayList(Iterables.concat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomPackagingJavaIntegTest.groovy

        }
    
        def "can specify packaging for known jar packaging without changing artifact extension"() {
            given:
            createBuildScripts "ejb"
    
            when:
            succeeds "publish"
    
            then:
            javaLibrary.assertPublished('ejb', 'jar')
            javaLibrary.parsedModuleMetadata.variant("apiElements").files[0].name == "publishTest-1.9.jar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/site/apt/dependency-types.apt

    *-----------------------+---------------+------------+-----------+-----------------------+-----------------------+
    | <<<ejb>>>             |               | <<<jar>>>  | java      | classes               |                       |
    *-----------------------+---------------+------------+-----------+-----------------------+-----------------------+
    | <<<ejb-client>>>      | <<<client>>>  | <<<jar>>>  | java      | classes               |                       |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 06:12:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomPackagingIntegTest.groovy

            given:
            createBuildScripts """
                pom.packaging "ejb"
    
                artifact("content.txt") {
                    extension "jar"
                }
    """
    
            when:
            succeeds "publish"
    
            then:
            mavenModule.assertPublished()
            mavenModule.parsedPom.packaging == 'ejb'
            mavenModule.assertArtifactsPublished("publishTest-1.9.jar", "publishTest-1.9.pom")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    displayed by tools. The display name need not be unique. Used in: application Example: <display-name>Employee Self Service</display-name> --> <!ELEMENT display-name (#PCDATA)> <!-- The ejb element specifies the URI of an ejb-jar, relative to the top level of the application package. Used in: module --> <!ELEMENT ejb (#PCDATA)> <!-- The icon element contains small-icon and large-icon elements that specify the file names for small and a large GIF or JPEG icon images used to represent the parent element...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorBuilder.java

         *
         * - test-jar (see <a href="http://maven.apache.org/guides/mini/guide-attached-tests.html">Maven documentation</a>)
         * - ejb-client (see <a href="http://maven.apache.org/plugins/maven-ejb-plugin/examples/ejb-client-dependency.html">Maven documentation</a>)
         *
         * @param type Type
         */
        private String getClassifierForType(String type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/default-bindings.apt.vm

    * Plugin bindings for <<<jar>>> packaging
    
    %{snippet|id=jar|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/packaging/JarLifecycleMappingProvider.java}
    
    * Plugin bindings for <<<ejb>>> packaging
    
    %{snippet|id=ejb|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/packaging/EjbLifecycleMappingProvider.java}
    
    * Plugin bindings for <<<maven-plugin>>> packaging
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 08 17:45:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top