Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for central (0.03 sec)

  1. pom.xml

    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<groupId>org.sonatype.central</groupId>
    				<artifactId>central-publishing-maven-plugin</artifactId>
    				<version>0.7.0</version>
    				<extensions>true</extensions>
    				<configuration>
    					<publishingServerId>central</publishingServerId>
    				</configuration>
    			</plugin>
    		</plugins>
    	</build>
    	<dependencies>
    		<dependency>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 03:01:32 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. guava-bom/pom.xml

      </dependencyManagement>
    
      <profiles>
        <profile>
          <id>sonatype-oss-release</id>
          <build>
            <plugins>
              <plugin>
                <groupId>org.sonatype.central</groupId>
                <artifactId>central-publishing-maven-plugin</artifactId>
                <version>0.8.0</version>
                <extensions>true</extensions>
              </plugin>
            </plugins>
          </build>
        </profile>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 26 00:48:38 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  3. android/guava-bom/pom.xml

      </dependencyManagement>
    
      <profiles>
        <profile>
          <id>sonatype-oss-release</id>
          <build>
            <plugins>
              <plugin>
                <groupId>org.sonatype.central</groupId>
                <artifactId>central-publishing-maven-plugin</artifactId>
                <version>0.8.0</version>
                <extensions>true</extensions>
              </plugin>
            </plugins>
          </build>
        </profile>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 26 00:48:38 UTC 2025
    - 2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java

        }
    
        // Test getRequestedTimeZone() method
        public void test_getRequestedTimeZone() {
            // Execute
            TimeZone result = provider.getRequestedTimeZone(requestManager);
    
            // Verify that the central time zone is returned
            assertNotNull(result);
            assertEquals(FessUserTimeZoneProcessProvider.centralTimeZone, result);
            assertEquals(TimeZone.getDefault(), result);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. plugin.xml

    	<property name="plugins.dir" value="${basedir}/plugins" />
    	<property name="target.dir" value="${basedir}/target/plugins" />
    
    	<!-- Maven Repository -->
    	<property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" />
    	<property name="maven.release.repo.url" value="https://oss.sonatype.org/content/repositories/releases" />
    
    	<target name="install.plugins">
    		<mkdir dir="${target.dir}" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  6. README.md

    # CodeLibs CoreLib [![Java CI with Maven](https://github.com/codelibs/corelib/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/corelib/actions/workflows/maven.yml) [![Maven Central](https://img.shields.io/maven-central/v/org.codelibs/corelib.svg)](https://central.sonatype.com/artifact/org.codelibs/corelib) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  7. android/pom.xml

                      <goal>sign</goal>
                    </goals>
                  </execution>
                </executions>
              </plugin>
              <plugin>
                <groupId>org.sonatype.central</groupId>
                <artifactId>central-publishing-maven-plugin</artifactId>
                <version>0.8.0</version>
                <extensions>true</extensions>
              </plugin>
            </plugins>
          </build>
        </profile>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  8. pom.xml

                      <goal>sign</goal>
                    </goals>
                  </execution>
                </executions>
              </plugin>
              <plugin>
                <groupId>org.sonatype.central</groupId>
                <artifactId>central-publishing-maven-plugin</artifactId>
                <version>0.8.0</version>
                <extensions>true</extensions>
              </plugin>
            </plugins>
          </build>
        </profile>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  9. module.xml

    	<property name="modules.dir" value="${basedir}/modules" />
    	<property name="target.dir" value="${basedir}/target/modules" />
    
    	<!-- Maven Repository -->
    	<property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" />
    	<property name="maven.release.repo.url" value="https://maven.codelibs.org" />
    	<property name="opensearch.version" value="3.2.0" />
    
    	<target name="install.modules">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1}, 0, 0, 1, new byte[] {1});
        testRotate(new byte[] {1}, 1, 0, 1, new byte[] {1});
        testRotate(new byte[] {1}, 1, 1, 1, new byte[] {1});
    
        // Rotate the central 5 elements, leaving the ends as-is
        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, -6, 1, 6, new byte[] {0, 2, 3, 4, 5, 1, 6});
        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, -1, 1, 6, new byte[] {0, 2, 3, 4, 5, 1, 6});
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
Back to top