Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for webinar (0.11 sec)

  1. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModule/some-thing/webinar-impl/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <artifactId>webinar-impl</artifactId>
      <packaging>jar</packaging>
      <name>Webinar implementation</name>
    
      <parent>
        <groupId>com.example.webinar</groupId>
        <artifactId>webinar-parent</artifactId>
        <version>1.0-SNAPSHOT</version>
      </parent>
    
      <properties>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithNestedParent/some-thing/pom.xml

      </properties>
    
      <modules>
        <module>webinar-api</module>
        <module>webinar-impl</module>
        <module>webinar-war</module>
      </modules>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                </plugin>
            </plugins>
        </build>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 976 bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModule/some-thing/webinar-api/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <artifactId>webinar-api</artifactId>
      <packaging>jar</packaging>
      <name>Webinar APIs</name>
    
      <parent>
        <groupId>com.example.webinar</groupId>
        <artifactId>webinar-parent</artifactId>
        <version>1.0-SNAPSHOT</version>
      </parent>
    
      <properties>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 603 bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleNoBackReferences/some-thing/webinar-impl/pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <artifactId>webinar-impl</artifactId>
      <packaging>jar</packaging>
      <name>Webinar implementation</name>
      <groupId>com.example.webinar</groupId>
      <version>1.0-SNAPSHOT</version>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/maven/MavenProjectsCreatorSpec.groovy

      <modelVersion>4.0.0</modelVersion>
      <groupId>org.gradle.webinar</groupId>
      <artifactId>webinar-parent</artifactId>
      <version>1.0-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <modules>
        <module>webinar-api</module>
      </modules>
    </project>
    """
    
            temp.file("webinar-api/pom.xml").text = """<project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>webinar-api</artifactId>
      <packaging>jar</packaging>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithRemoteParent/some-thing/webinar-impl/src/test/java/webinar/WebinarTest.java

    package webinar;
    
    import org.junit.Assert;
    import org.junit.Test;
    
    public class WebinarTest {
      
      @Test public void normalizesDescription() {
        //when
        Demoable demoable = new Webinar("nice   day");
        
        //then
        Assert.assertEquals("nice day", demoable.getDescription());
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 291 bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleNoBackReferences/some-thing/webinar-impl/src/test/java/webinar/WebinarTest.java

    package webinar;
    
    import org.junit.Assert;
    import org.junit.Test;
    
    public class WebinarTest {
      
      @Test public void normalizesDescription() {
        //when
        Demoable demoable = new Webinar("nice   day");
        
        //then
        Assert.assertEquals("nice day", demoable.getDescription());
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 291 bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithNestedParent/some-thing/webinar-impl/src/test/java/webinar/WebinarTest.java

    package webinar;
    
    import org.junit.Assert;
    import org.junit.Test;
    
    public class WebinarTest {
      
      @Test public void normalizesDescription() {
        //when
        Demoable demoable = new Webinar("nice   day");
        
        //then
        Assert.assertEquals("nice day", demoable.getDescription());
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 291 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModule/some-thing/webinar-api/src/main/java/webinar/Demoable.java

    package webinar;
    
    public interface Demoable {
      String getDescription();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 75 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleNoBackReferences/some-thing/webinar-api/src/main/java/webinar/Demoable.java

    package webinar;
    
    public interface Demoable {
      String getDescription();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 75 bytes
    - Viewed (0)
Back to top