From 9498f9a5f9e1e0dffe5bd85ce7fce45ae0739fe4 Mon Sep 17 00:00:00 2001 From: Gem Lamont <106068376+gem-neo4j@users.noreply.github.com> Date: Wed, 3 May 2023 13:35:09 +0200 Subject: [PATCH] [XN2vr37d] Add apache license headers (#371) --- LICENSES.txt | 3160 +++++++++++++++++ NOTICE.txt | 484 +++ build.gradle | 4 + common/build.gradle | 7 +- common/src/main/java/apoc/ApocConfig.java | 18 + .../java/apoc/ApocConfigExtensionFactory.java | 18 + .../main/java/apoc/ApocExtensionFactory.java | 18 + .../main/java/apoc/ApocGlobalComponents.java | 18 + .../main/java/apoc/PoolExtensionFactory.java | 18 + common/src/main/java/apoc/Pools.java | 18 + .../java/apoc/RegisterComponentFactory.java | 18 + common/src/main/java/apoc/SystemLabels.java | 18 + .../main/java/apoc/SystemPropertyKeys.java | 18 + .../main/java/apoc/algo/PathFindingUtils.java | 18 + .../main/java/apoc/coll/SetBackedList.java | 18 + .../main/java/apoc/convert/ConvertUtils.java | 18 + .../main/java/apoc/cypher/CypherUtils.java | 18 + common/src/main/java/apoc/date/DateUtils.java | 18 + .../apoc/export/cypher/ExportFileManager.java | 18 + .../export/cypher/FileManagerFactory.java | 18 + .../formatter/AbstractCypherFormatter.java | 18 + .../AddStructureCypherFormatter.java | 18 + .../formatter/CreateCypherFormatter.java | 18 + .../export/cypher/formatter/CypherFormat.java | 18 + .../cypher/formatter/CypherFormatter.java | 18 + .../formatter/CypherFormatterUtils.java | 18 + .../formatter/UpdateAllCypherFormatter.java | 18 + .../UpdateStructureCypherFormatter.java | 18 + .../apoc/export/util/BatchTransaction.java | 18 + .../java/apoc/export/util/BulkImportUtil.java | 18 + .../apoc/export/util/CountingInputStream.java | 18 + .../java/apoc/export/util/CountingReader.java | 18 + .../export/util/DurationValueSerializer.java | 18 + .../java/apoc/export/util/ExportConfig.java | 18 + .../java/apoc/export/util/ExportFormat.java | 18 + .../java/apoc/export/util/ExportUtils.java | 18 + .../java/apoc/export/util/FormatUtils.java | 18 + .../apoc/export/util/MetaInformation.java | 18 + .../export/util/NodesAndRelsSubGraph.java | 18 + .../apoc/export/util/PointSerializer.java | 18 + .../apoc/export/util/ProgressReporter.java | 18 + .../main/java/apoc/export/util/Reporter.java | 18 + .../java/apoc/export/util/SizeCounter.java | 18 + .../apoc/export/util/TemporalSerializer.java | 18 + .../config/InvalidConfigException.java | 18 + .../java/apoc/gephi/GephiFormatUtils.java | 18 + common/src/main/java/apoc/get/Get.java | 18 + .../src/main/java/apoc/graph/GraphsUtils.java | 18 + .../document/builder/DocumentToGraph.java | 18 + .../graph/document/builder/LabelBuilder.java | 18 + .../document/builder/RelationshipBuilder.java | 18 + .../java/apoc/graph/util/GraphsConfig.java | 18 + common/src/main/java/apoc/load/CSVResult.java | 18 + .../main/java/apoc/load/LoadJsonUtils.java | 18 + common/src/main/java/apoc/load/Mapping.java | 18 + .../src/main/java/apoc/load/util/Results.java | 18 + .../java/apoc/meta/ConstraintTracker.java | 18 + .../src/main/java/apoc/meta/MetaConfig.java | 18 + .../main/java/apoc/meta/SampleMetaConfig.java | 18 + .../java/apoc/meta/Tables4LabelsProfile.java | 18 + common/src/main/java/apoc/meta/Types.java | 18 + .../meta/tablesforlabels/OrderedLabels.java | 18 + .../PropertyContainerProfile.java | 18 + .../meta/tablesforlabels/PropertyTracker.java | 18 + .../path/RelationshipTypeAndDirections.java | 18 + .../apoc/periodic/BatchAndTotalCollector.java | 18 + .../apoc/periodic/BatchAndTotalResult.java | 18 + .../main/java/apoc/periodic/BatchMode.java | 18 + .../java/apoc/periodic/PeriodicUtils.java | 18 + .../java/apoc/result/AssertSchemaResult.java | 18 + .../java/apoc/result/ByteArrayResult.java | 18 + .../java/apoc/result/DistancePathResult.java | 18 + .../main/java/apoc/result/GraphResult.java | 18 + .../apoc/result/IndexConstraintNodeInfo.java | 18 + .../IndexConstraintRelationshipInfo.java | 18 + .../src/main/java/apoc/result/ListResult.java | 18 + .../src/main/java/apoc/result/LongResult.java | 18 + .../src/main/java/apoc/result/MapResult.java | 18 + .../main/java/apoc/result/NodeListResult.java | 18 + .../src/main/java/apoc/result/NodeResult.java | 18 + .../java/apoc/result/NodeResultWithStats.java | 18 + .../main/java/apoc/result/ObjectResult.java | 18 + .../src/main/java/apoc/result/PathResult.java | 18 + .../main/java/apoc/result/ProgressInfo.java | 18 + .../java/apoc/result/RelationshipResult.java | 18 + .../result/RelationshipResultWithStats.java | 18 + .../src/main/java/apoc/result/RowResult.java | 18 + .../main/java/apoc/result/VirtualGraph.java | 18 + .../main/java/apoc/result/VirtualNode.java | 18 + .../main/java/apoc/result/VirtualPath.java | 18 + .../java/apoc/result/VirtualPathResult.java | 18 + .../java/apoc/result/VirtualRelationship.java | 18 + .../java/apoc/result/WeightedPathResult.java | 18 + .../util/ApocUrlStreamHandlerFactory.java | 18 + .../src/main/java/apoc/util/ArchiveType.java | 18 + .../java/apoc/util/ArrayBackedIterator.java | 18 + .../main/java/apoc/util/ArrayBackedList.java | 18 + .../main/java/apoc/util/CompressionAlgo.java | 18 + .../java/apoc/util/CompressionConfig.java | 18 + .../main/java/apoc/util/DateFormatUtil.java | 18 + .../main/java/apoc/util/DateParseUtil.java | 18 + .../java/apoc/util/DurationFormatUtil.java | 18 + common/src/main/java/apoc/util/FileUtils.java | 18 + .../java/apoc/util/FixedSizeStringWriter.java | 18 + common/src/main/java/apoc/util/JsonUtil.java | 18 + common/src/main/java/apoc/util/MapUtil.java | 18 + .../apoc/util/MissingDependencyException.java | 18 + .../java/apoc/util/QueueBasedSpliterator.java | 18 + common/src/main/java/apoc/util/QueueUtil.java | 18 + .../main/java/apoc/util/SortedArraySet.java | 18 + .../main/java/apoc/util/StreamConnection.java | 18 + .../java/apoc/util/SupportedProtocols.java | 18 + common/src/main/java/apoc/util/Util.java | 18 + .../collection/AbstractResourceIterable.java | 18 + .../util/collection/FilteringIterable.java | 18 + .../util/collection/FilteringIterator.java | 18 + .../java/apoc/util/collection/Iterables.java | 18 + .../java/apoc/util/collection/Iterators.java | 18 + .../collection/NestingResourceIterator.java | 18 + .../util/collection/PrefetchingIterator.java | 18 + .../PrefetchingResourceIterator.java | 18 + .../collection/ResourceClosingIterator.java | 18 + .../ResourceIteratorCloseFailedException.java | 18 + .../collection/WrappingResourceIterator.java | 18 + .../google/cloud/GCStorageURLConnection.java | 18 + .../cloud/GCStorageURLStreamHandler.java | 18 + .../GCStorageURLStreamHandlerFactory.java | 18 + .../main/java/apoc/util/hdfs/HDFSUtils.java | 18 + .../MultiThreadedGlobalGraphOperations.java | 18 + common/src/main/java/apoc/util/s3/S3Aws.java | 18 + .../java/apoc/util/s3/S3OutputStream.java | 18 + .../src/main/java/apoc/util/s3/S3Params.java | 18 + .../java/apoc/util/s3/S3ParamsExtractor.java | 18 + .../java/apoc/util/s3/S3URLConnection.java | 18 + .../main/java/apoc/util/s3/S3UploadUtils.java | 18 + .../util/s3/S3UrlStreamHandlerFactory.java | 18 + common/src/main/java/apoc/uuid/UuidUtil.java | 18 + .../java/org/HdrHistogram/HistogramUtil.java | 18 + .../cypher/export/CypherResultSubGraph.java | 18 + .../neo4j/cypher/export/DatabaseSubGraph.java | 18 + .../org/neo4j/cypher/export/SubGraph.java | 18 + common/src/test/java/apoc/ApocConfigTest.java | 18 + .../java/apoc/coll/SetBackedListTest.java | 18 + .../apoc/export/util/FormatUtilsTest.java | 18 + .../document/builder/DocumentToGraphTest.java | 18 + .../document/builder/LabelBuilderTest.java | 18 + .../apoc/load/relative/LoadXmlResult.java | 18 + .../RelationshipTypeAndDirectionsTest.java | 18 + .../java/apoc/result/VirtualNodeTest.java | 18 + .../test/java/apoc/test/EnvSettingRule.java | 18 + .../test/java/apoc/test/annotations/Env.java | 18 + .../apoc/test/annotations/EnvSetting.java | 18 + .../test/java/apoc/util/BinaryTestUtil.java | 18 + .../java/apoc/util/DateParseUtilTest.java | 18 + .../apoc/util/FixedSizeStringWriterTest.java | 18 + .../java/apoc/util/SortedArraySetTest.java | 18 + .../test/java/apoc/util/UtilQuoteTest.java | 18 + .../AbstractResourceIterableTest.java | 18 + .../util/collection/CollectionTestHelper.java | 18 + .../apoc/util/collection/IterablesTest.java | 18 + .../ResourceClosingIteratorTest.java | 18 + ...ultiThreadedGlobalGraphOperationsTest.java | 18 + .../src/test/java/apoc/uuid/UuidUtilTest.java | 18 + core/build.gradle | 11 - .../java/apoc/CoreApocGlobalComponents.java | 18 + .../main/java/apoc/agg/CollAggregation.java | 18 + core/src/main/java/apoc/agg/Graph.java | 18 + .../main/java/apoc/agg/MaxAndMinItems.java | 18 + core/src/main/java/apoc/agg/Median.java | 18 + core/src/main/java/apoc/agg/Percentiles.java | 18 + core/src/main/java/apoc/agg/Product.java | 18 + core/src/main/java/apoc/agg/Statistics.java | 18 + core/src/main/java/apoc/algo/Cover.java | 18 + core/src/main/java/apoc/algo/PathFinding.java | 18 + core/src/main/java/apoc/atomic/Atomic.java | 18 + .../java/apoc/atomic/util/AtomicUtils.java | 18 + .../java/apoc/bitwise/BitwiseOperations.java | 18 + core/src/main/java/apoc/coll/Coll.java | 18 + core/src/main/java/apoc/convert/Convert.java | 18 + .../main/java/apoc/convert/ConvertConfig.java | 18 + core/src/main/java/apoc/convert/Json.java | 18 + core/src/main/java/apoc/create/Create.java | 18 + core/src/main/java/apoc/cypher/Cypher.java | 18 + .../java/apoc/cypher/CypherFunctions.java | 18 + .../java/apoc/cypher/CypherInitializer.java | 18 + core/src/main/java/apoc/cypher/Timeboxed.java | 18 + .../main/java/apoc/data/url/ExtractURL.java | 18 + core/src/main/java/apoc/date/Date.java | 18 + core/src/main/java/apoc/diff/Diff.java | 18 + core/src/main/java/apoc/example/Examples.java | 18 + .../java/apoc/export/arrow/ArrowConfig.java | 18 + .../java/apoc/export/arrow/ArrowUtils.java | 18 + .../java/apoc/export/arrow/ExportArrow.java | 18 + .../export/arrow/ExportArrowFileStrategy.java | 18 + .../apoc/export/arrow/ExportArrowService.java | 18 + .../export/arrow/ExportArrowStrategy.java | 18 + .../arrow/ExportArrowStreamStrategy.java | 18 + .../export/arrow/ExportGraphFileStrategy.java | 18 + .../export/arrow/ExportGraphStrategy.java | 18 + .../arrow/ExportGraphStreamStrategy.java | 18 + .../arrow/ExportResultFileStrategy.java | 18 + .../export/arrow/ExportResultStrategy.java | 18 + .../arrow/ExportResultStreamStrategy.java | 18 + .../java/apoc/export/csv/CsvEntityLoader.java | 18 + .../main/java/apoc/export/csv/CsvFormat.java | 18 + .../java/apoc/export/csv/CsvHeaderField.java | 18 + .../java/apoc/export/csv/CsvHeaderFields.java | 18 + .../java/apoc/export/csv/CsvLoaderConfig.java | 18 + .../apoc/export/csv/CsvLoaderConstants.java | 18 + .../apoc/export/csv/CsvPropertyConverter.java | 18 + .../main/java/apoc/export/csv/ExportCSV.java | 18 + .../main/java/apoc/export/csv/ImportCsv.java | 18 + .../java/apoc/export/cypher/ExportCypher.java | 18 + .../MultiStatementCypherSubGraphExporter.java | 18 + .../apoc/export/graphml/ExportGraphML.java | 18 + .../apoc/export/graphml/XmlGraphMLReader.java | 18 + .../apoc/export/graphml/XmlGraphMLWriter.java | 18 + .../apoc/export/graphml/XmlNodeExport.java | 18 + .../java/apoc/export/json/ExportJson.java | 18 + .../java/apoc/export/json/ImportJson.java | 18 + .../apoc/export/json/ImportJsonConfig.java | 18 + .../java/apoc/export/json/JsonFormat.java | 18 + .../export/json/JsonFormatSerializer.java | 18 + .../java/apoc/export/json/JsonImporter.java | 18 + core/src/main/java/apoc/graph/Graphs.java | 18 + .../java/apoc/hashing/Fingerprinting.java | 18 + .../apoc/hashing/FingerprintingConfig.java | 18 + core/src/main/java/apoc/help/Help.java | 18 + core/src/main/java/apoc/help/HelpResult.java | 18 + .../apoc/index/QueuePoisoningCollector.java | 18 + .../src/main/java/apoc/index/SchemaIndex.java | 18 + core/src/main/java/apoc/label/Label.java | 18 + core/src/main/java/apoc/load/LoadArrow.java | 18 + core/src/main/java/apoc/load/LoadJson.java | 18 + .../apoc/load/SkipWhitespaceInputStream.java | 18 + core/src/main/java/apoc/load/Xml.java | 18 + core/src/main/java/apoc/lock/Lock.java | 18 + .../main/java/apoc/log/Neo4jLogStream.java | 18 + core/src/main/java/apoc/map/Maps.java | 18 + core/src/main/java/apoc/math/Maths.java | 18 + core/src/main/java/apoc/math/Regression.java | 18 + core/src/main/java/apoc/merge/Merge.java | 18 + core/src/main/java/apoc/meta/Meta.java | 18 + .../main/java/apoc/neighbors/Neighbors.java | 18 + core/src/main/java/apoc/nodes/Grouping.java | 18 + core/src/main/java/apoc/nodes/Nodes.java | 18 + .../src/main/java/apoc/nodes/NodesConfig.java | 18 + .../main/java/apoc/number/ArabicRoman.java | 18 + core/src/main/java/apoc/number/Numbers.java | 18 + .../main/java/apoc/number/exact/Exact.java | 18 + .../src/main/java/apoc/path/LabelMatcher.java | 18 + .../java/apoc/path/LabelMatcherGroup.java | 18 + .../apoc/path/LabelSequenceEvaluator.java | 18 + .../main/java/apoc/path/NodeEvaluators.java | 18 + .../src/main/java/apoc/path/PathExplorer.java | 18 + core/src/main/java/apoc/path/Paths.java | 18 + .../path/RelationshipSequenceExpander.java | 18 + .../src/main/java/apoc/periodic/Periodic.java | 18 + .../java/apoc/refactor/GraphRefactoring.java | 18 + .../apoc/refactor/NodeRefactorResult.java | 18 + .../refactor/RelationshipRefactorResult.java | 18 + .../java/apoc/refactor/rename/Rename.java | 18 + .../apoc/refactor/util/PropertiesManager.java | 18 + .../apoc/refactor/util/RefactorConfig.java | 18 + .../java/apoc/refactor/util/RefactorUtil.java | 18 + .../main/java/apoc/schema/SchemaConfig.java | 18 + core/src/main/java/apoc/schema/Schemas.java | 18 + core/src/main/java/apoc/scoring/Scoring.java | 18 + .../java/apoc/search/ParallelNodeSearch.java | 18 + core/src/main/java/apoc/spatial/Distance.java | 18 + core/src/main/java/apoc/spatial/Geocode.java | 18 + .../java/apoc/stats/DegreeDistribution.java | 18 + core/src/main/java/apoc/stats/DegreeUtil.java | 18 + .../apoc/temporal/TemporalProcedures.java | 18 + core/src/main/java/apoc/text/Phonetic.java | 18 + .../apoc/text/SorensenDiceCoefficient.java | 18 + core/src/main/java/apoc/text/Strings.java | 18 + core/src/main/java/apoc/trigger/Trigger.java | 18 + .../java/apoc/trigger/TriggerHandler.java | 18 + .../trigger/TriggerHandlerNewProcedures.java | 18 + .../main/java/apoc/trigger/TriggerInfo.java | 18 + .../java/apoc/trigger/TriggerMetadata.java | 18 + .../apoc/trigger/TriggerNewProcedures.java | 18 + core/src/main/java/apoc/util/Utils.java | 18 + core/src/main/java/apoc/version/Version.java | 18 + core/src/main/java/apoc/warmup/Warmup.java | 18 + .../java/apoc/agg/CollAggregationTest.java | 18 + .../java/apoc/agg/GraphAggregationTest.java | 18 + .../agg/MaxAndMinItemsAggregationTest.java | 18 + core/src/test/java/apoc/agg/MedianTest.java | 18 + .../test/java/apoc/agg/PercentilesTest.java | 18 + .../java/apoc/agg/ProductAggregationTest.java | 18 + .../test/java/apoc/agg/StatisticsTest.java | 18 + core/src/test/java/apoc/algo/CoverTest.java | 18 + .../test/java/apoc/algo/PathFindingTest.java | 18 + .../src/test/java/apoc/atomic/AtomicTest.java | 18 + .../apoc/bitwise/BitwiseOperationsTest.java | 18 + core/src/test/java/apoc/coll/CollTest.java | 18 + .../java/apoc/convert/ConvertJsonTest.java | 18 + .../test/java/apoc/convert/ConvertTest.java | 18 + .../src/test/java/apoc/create/CreateTest.java | 18 + .../apoc/cypher/CypherInitializerTest.java | 18 + .../cypher/CypherIsVersionDifferentTest.java | 18 + .../src/test/java/apoc/cypher/CypherTest.java | 18 + .../java/apoc/data/url/ExtractURLTest.java | 18 + core/src/test/java/apoc/date/DateTest.java | 18 + core/src/test/java/apoc/diff/DiffTest.java | 18 + .../test/java/apoc/example/ExamplesTest.java | 18 + .../test/java/apoc/export/BigGraphTest.java | 18 + .../apoc/export/ExportCoreSecurityTest.java | 18 + .../export/ExportStreamsStatementsTest.java | 18 + .../java/apoc/export/arrow/ArrowTest.java | 18 + .../export/arrow/ExportArrowSecurityTest.java | 18 + .../apoc/export/csv/CsvHeaderFieldTests.java | 18 + .../export/csv/ExportCsvNeo4jAdminTest.java | 18 + .../java/apoc/export/csv/ExportCsvTest.java | 18 + .../apoc/export/csv/ImportCsvLdbcTest.java | 18 + .../java/apoc/export/csv/ImportCsvTest.java | 18 + .../cypher/ExportCypherMultiRelTest.java | 18 + .../apoc/export/cypher/ExportCypherTest.java | 18 + .../export/cypher/ExportCypherTestUtils.java | 18 + .../export/graphml/ExportGraphMLTest.java | 18 + .../export/graphml/ExportGraphMLTestUtil.java | 18 + .../java/apoc/export/json/ExportJsonTest.java | 18 + .../java/apoc/export/json/ImportJsonTest.java | 18 + core/src/test/java/apoc/graph/GraphsTest.java | 18 + .../java/apoc/hashing/FingerprintingTest.java | 18 + core/src/test/java/apoc/help/HelpTest.java | 18 + .../test/java/apoc/index/SchemaIndexTest.java | 18 + core/src/test/java/apoc/label/LabelTest.java | 18 + .../java/apoc/load/LoadCoreSecurityTest.java | 18 + .../src/test/java/apoc/load/LoadJsonTest.java | 18 + .../test/java/apoc/load/SimpleXmlTest.java | 18 + .../load/SkipWhitespaceInputStreamTest.java | 18 + core/src/test/java/apoc/load/XmlTest.java | 18 + .../load/relative/LoadRelativePathTest.java | 18 + core/src/test/java/apoc/lock/LockTest.java | 18 + .../java/apoc/log/Neo4jLogStreamTest.java | 18 + core/src/test/java/apoc/map/MapsTest.java | 18 + core/src/test/java/apoc/math/MathsTest.java | 18 + .../test/java/apoc/math/RegressionTest.java | 18 + core/src/test/java/apoc/merge/MergeTest.java | 18 + core/src/test/java/apoc/meta/MetaTest.java | 18 + .../java/apoc/neighbors/NeighborsTest.java | 18 + .../test/java/apoc/nodes/GroupingTest.java | 18 + core/src/test/java/apoc/nodes/NodesTest.java | 18 + .../java/apoc/number/ArabicRomanTest.java | 18 + .../test/java/apoc/number/NumbersTest.java | 18 + .../java/apoc/number/exact/ExactTest.java | 18 + .../test/java/apoc/path/ExpandPathTest.java | 18 + .../java/apoc/path/LabelSequenceTest.java | 18 + .../test/java/apoc/path/NodeFilterTest.java | 18 + core/src/test/java/apoc/path/PathsTest.java | 18 + .../test/java/apoc/path/RelSequenceTest.java | 18 + .../src/test/java/apoc/path/SequenceTest.java | 18 + .../src/test/java/apoc/path/SubgraphTest.java | 18 + .../java/apoc/periodic/BatchModeTest.java | 18 + .../test/java/apoc/periodic/PeriodicTest.java | 18 + .../java/apoc/periodic/PeriodicUtilsTest.java | 18 + .../java/apoc/refactor/CloneSubgraphTest.java | 18 + .../apoc/refactor/GraphRefactoringTest.java | 18 + .../java/apoc/refactor/rename/RenameTest.java | 18 + .../refactor/util/PropertiesManagerTest.java | 18 + .../test/java/apoc/schema/SchemasTest.java | 18 + .../test/java/apoc/scoring/ScoringTest.java | 18 + .../apoc/search/ParallelNodeSearchTest.java | 18 + .../test/java/apoc/spatial/DistanceTest.java | 18 + .../test/java/apoc/spatial/GeocodeTest.java | 18 + .../test/java/apoc/spatial/SpatialTest.java | 18 + .../apoc/stats/DegreeDistributionTest.java | 18 + .../apoc/temporal/TemporalProceduresTest.java | 18 + .../src/test/java/apoc/text/PhoneticTest.java | 18 + .../text/SorensenDiceCoefficientTest.java | 18 + .../test/java/apoc/text/StringCleanTest.java | 18 + core/src/test/java/apoc/text/StringsTest.java | 18 + .../apoc/trigger/TriggerDisabledTest.java | 18 + .../trigger/TriggerNewProceduresTest.java | 18 + .../java/apoc/trigger/TriggerRestartTest.java | 18 + .../test/java/apoc/trigger/TriggerTest.java | 18 + core/src/test/java/apoc/util/UtilTest.java | 18 + core/src/test/java/apoc/util/UtilsTest.java | 18 + .../src/test/java/apoc/warmup/WarmupTest.java | 18 + .../csv-inputs/ignore-relationships.csv.zz | Bin 0 -> 59 bytes it/src/test/java/apoc/it/common/UtilIT.java | 18 + .../test/java/apoc/it/core/ApocSplitTest.java | 18 + .../java/apoc/it/core/CollEnterpriseTest.java | 18 + .../test/java/apoc/it/core/ExportCsvIT.java | 18 + .../java/apoc/it/core/ExportCsvS3Test.java | 18 + .../ExportCypherEnterpriseFeaturesTest.java | 18 + .../java/apoc/it/core/ExportCypherS3Test.java | 18 + .../apoc/it/core/ExportGraphMLS3Test.java | 18 + .../java/apoc/it/core/ExportJsonS3Test.java | 18 + .../core/GraphRefactoringEnterpriseTest.java | 18 + .../it/core/MetaEnterpriseFeaturesTest.java | 18 + .../core/SchemasEnterpriseFeaturesTest.java | 18 + .../test/java/apoc/it/core/StartupTest.java | 18 + .../it/core/TriggerClusterRoutingTest.java | 18 + .../core/TriggerEnterpriseFeaturesTest.java | 18 + .../apoc/it/core/WarmupEnterpriseTest.java | 18 + licenses-3rdparties.gradle | 210 ++ licenses-source-header.gradle | 23 + licenses/headers/LICENSES-header.txt | 2 + licenses/headers/NOTICE-header.txt | 22 + licenses/headers/source-header.txt | 16 + licenses/text/Apache-2.0 | 201 ++ licenses/text/BSD-2-Clause | 22 + licenses/text/BSD-3-Clause | 24 + ...pment and Distribution License Version 1.0 | 377 ++ ...pment and Distribution License Version 1.1 | 347 ++ ...se, version 2 with the Classpath Exception | 712 ++++ .../text/Eclipse Distribution License - v 1.0 | 28 + licenses/text/Eclipse Public License - v 1.0 | 204 ++ licenses/text/Eclipse Public License - v 2.0 | 277 ++ ...), version 2, with the Classpath exception | 390 ++ ...LESSER GENERAL PUBLIC LICENSE, Version 2.1 | 169 + licenses/text/MIT | 21 + licenses/text/MPL-2.0 | 373 ++ .../Public Domain, per Creative Commons CC0 | 121 + licenses/text/The Go license | 27 + .../java/apoc/processor/ApocProcessor.java | 18 + .../apoc/processor/ExtensionClassWriter.java | 18 + .../java/apoc/processor/SignatureVisitor.java | 18 + .../apoc/processor/ApocProcessorTest.java | 18 + .../ProcedureSignatureVisitorTest.java | 18 + ...gregationFunctionSignatureVisitorTest.java | 18 + .../UserFunctionSignatureVisitorTest.java | 18 + test-utils/build.gradle | 4 +- .../src/main/java/apoc/algo/AlgoUtil.java | 18 + .../src/main/java/apoc/csv/CsvTestUtil.java | 18 + .../java/apoc/periodic/PeriodicTestUtils.java | 18 + .../java/apoc/trigger/TriggerTestUtil.java | 18 + .../src/main/java/apoc/util/FileTestUtil.java | 18 + .../apoc/util/Neo4jContainerExtension.java | 18 + .../apoc/util/SensitivePathGenerator.java | 18 + .../java/apoc/util/StatusCodeMatcher.java | 18 + .../java/apoc/util/TestContainerUtil.java | 18 + .../src/main/java/apoc/util/TestUtil.java | 18 + .../util/TestcontainersCausalCluster.java | 18 + .../java/apoc/util/TransactionTestUtil.java | 18 + .../main/java/apoc/util/s3/S3BaseTest.java | 18 + .../main/java/apoc/util/s3/S3Container.java | 18 + .../apoc/util/s3/S3ParamsExtractorTest.java | 18 + .../main/java/apoc/util/s3/S3TestUtil.java | 18 + .../src/main/java/apoc/xml/XmlTestUtils.java | 18 + .../java/org/neo4j/test/rule/DbmsRule.java | 18 + .../org/neo4j/test/rule/ExternalResource.java | 18 + .../neo4j/test/rule/ImpermanentDbmsRule.java | 18 + 447 files changed, 14779 insertions(+), 17 deletions(-) create mode 100644 LICENSES.txt create mode 100644 NOTICE.txt create mode 100644 core/src/test/resources/csv-inputs/ignore-relationships.csv.zz create mode 100644 licenses-3rdparties.gradle create mode 100644 licenses-source-header.gradle create mode 100644 licenses/headers/LICENSES-header.txt create mode 100644 licenses/headers/NOTICE-header.txt create mode 100644 licenses/headers/source-header.txt create mode 100644 licenses/text/Apache-2.0 create mode 100644 licenses/text/BSD-2-Clause create mode 100644 licenses/text/BSD-3-Clause create mode 100644 licenses/text/Common Development and Distribution License Version 1.0 create mode 100644 licenses/text/Common Development and Distribution License Version 1.1 create mode 100644 licenses/text/Common Development and Distribution License Version 1.1 and GNU General Public License, version 2 with the Classpath Exception create mode 100644 licenses/text/Eclipse Distribution License - v 1.0 create mode 100644 licenses/text/Eclipse Public License - v 1.0 create mode 100644 licenses/text/Eclipse Public License - v 2.0 create mode 100644 licenses/text/GNU General Public License (GPL), version 2, with the Classpath exception create mode 100644 licenses/text/GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 create mode 100644 licenses/text/MIT create mode 100644 licenses/text/MPL-2.0 create mode 100644 licenses/text/Public Domain, per Creative Commons CC0 create mode 100644 licenses/text/The Go license diff --git a/LICENSES.txt b/LICENSES.txt new file mode 100644 index 0000000000..f315635497 --- /dev/null +++ b/LICENSES.txt @@ -0,0 +1,3160 @@ +This file contains the full license text of the included third party +libraries. For an overview of the licenses see the NOTICE.txt file. + + +------------------------------------------------------------------------------ +Apache-2.0 + FastInfoset-1.2.16.jar + HikariCP-java7-2.4.12.jar + RoaringBitmap-0.7.17.jar + WMI4Java-1.6.3.jar + accessors-smart-2.4.9.jar + annotations-17.0.0.jar + arrow-format-10.0.1.jar + arrow-memory-core-10.0.1.jar + arrow-memory-netty-10.0.1.jar + arrow-vector-10.0.1.jar + assertj-core-3.24.2.jar + audience-annotations-0.5.0.jar + avro-1.7.7.jar + awaitility-4.2.0.jar + aws-java-sdk-core-1.12.425.jar + aws-java-sdk-kms-1.12.425.jar + aws-java-sdk-s3-1.12.425.jar + byte-buddy-1.14.1.jar + byte-buddy-agent-1.14.1.jar + caffeine-3.1.6.jar + cassandra-driver-core-3.10.0.jar + commons-beanutils-1.9.4.jar + commons-cli-1.2.jar + commons-codec-1.15.jar + commons-collections-3.2.2.jar + commons-collections4-4.2.jar + commons-collections4-4.4.jar + commons-compress-1.23.0.jar + commons-configuration2-2.9.0.jar + commons-csv-1.9.0.jar + commons-daemon-1.0.13.jar + commons-io-2.11.0.jar + commons-lang3-3.12.0.jar + commons-logging-1.2.jar + commons-math3-3.6.1.jar + commons-net-3.9.0.jar + commons-text-1.10.0.jar + curator-client-4.2.0.jar + curator-framework-4.2.0.jar + curator-recipes-4.2.0.jar + docker-java-api-3.2.13.jar + docker-java-transport-3.2.13.jar + docker-java-transport-zerodep-3.2.13.jar + ehcache-3.3.1.jar + error_prone_annotations-2.2.0.jar + error_prone_annotations-2.7.1.jar + failureaccess-1.0.1.jar + failureaccess-1.0.jar + flatbuffers-java-1.12.0.jar + fst-2.50.jar + geronimo-jcache_1.0_spec-1.0-alpha-1.jar + gradle-tooling-api-7.3.jar + gson-2.9.0.jar + guava-27.0-jre.jar + guava-31.0.1-jre.jar + guice-4.0.jar + guice-servlet-4.0.jar + hadoop-annotations-3.3.5.jar + hadoop-auth-3.3.5.jar + hadoop-common-3.3.5-tests.jar + hadoop-common-3.3.5.jar + hadoop-hdfs-3.3.5-tests.jar + hadoop-hdfs-3.3.5.jar + hadoop-hdfs-client-3.3.5.jar + hadoop-mapreduce-client-app-3.3.5.jar + hadoop-mapreduce-client-common-3.3.5.jar + hadoop-mapreduce-client-core-3.3.5.jar + hadoop-mapreduce-client-hs-3.3.5.jar + hadoop-mapreduce-client-jobclient-3.3.5-tests.jar + hadoop-mapreduce-client-jobclient-3.3.5.jar + hadoop-mapreduce-client-shuffle-3.3.5.jar + hadoop-minicluster-3.3.5.jar + hadoop-registry-3.3.5.jar + hadoop-shaded-guava-1.1.1.jar + hadoop-shaded-protobuf_3_7-1.1.1.jar + hadoop-yarn-api-3.3.5.jar + hadoop-yarn-client-3.3.5.jar + hadoop-yarn-common-3.3.5.jar + hadoop-yarn-server-applicationhistoryservice-3.3.5.jar + hadoop-yarn-server-common-3.3.5.jar + hadoop-yarn-server-nodemanager-3.3.5.jar + hadoop-yarn-server-resourcemanager-3.3.5.jar + hadoop-yarn-server-tests-3.3.5-tests.jar + hadoop-yarn-server-timelineservice-3.3.5.jar + hadoop-yarn-server-web-proxy-3.3.5.jar + httpclient-4.5.13.jar + httpcore-4.4.13.jar + ion-java-1.0.2.jar + ipaddress-5.3.3.jar + ipaddress-5.4.0.jar + j2objc-annotations-1.1.jar + j2objc-annotations-1.3.jar + jPowerShell-3.0.jar + jProcesses-1.6.5.jar + jackson-annotations-2.14.2.jar + jackson-core-2.14.2.jar + jackson-core-asl-1.9.13.jar + jackson-databind-2.14.2.jar + jackson-dataformat-cbor-2.14.2.jar + jackson-dataformat-csv-2.14.2.jar + jackson-datatype-jsr310-2.13.4.jar + jackson-datatype-jsr310-2.14.2.jar + jackson-jaxrs-base-2.14.2.jar + jackson-jaxrs-json-provider-2.14.2.jar + jackson-mapper-asl-1.9.13.jar + jackson-module-jaxb-annotations-2.14.2.jar + jakarta.validation-api-2.0.2.jar + java-util-1.9.0.jar + javapoet-1.13.0.jar + javassist-3.25.0-GA.jar + javax-websocket-client-impl-9.4.48.v20220622.jar + javax-websocket-server-impl-9.4.48.v20220622.jar + javax.inject-1.jar + jcip-annotations-1.0-1.jar + jctools-core-4.0.1.jar + jettison-1.5.4.jar + jetty-http-9.4.50.v20221201.jar + jetty-io-9.4.50.v20221201.jar + jetty-security-9.4.50.v20221201.jar + jetty-server-9.4.50.v20221201.jar + jetty-servlet-9.4.50.v20221201.jar + jetty-util-9.4.50.v20221201.jar + jetty-util-ajax-9.4.50.v20221201.jar + jetty-webapp-9.4.50.v20221201.jar + jetty-xml-9.4.50.v20221201.jar + jffi-1.2.16-native.jar + jffi-1.2.16.jar + jmespath-java-1.12.425.jar + jna-5.13.0.jar + jnr-constants-0.9.9.jar + jnr-ffi-2.1.7.jar + joda-time-2.8.1.jar + json-io-2.5.1.jar + json-path-2.8.0.jar + json-smart-2.4.10.jar + jsr305-3.0.2.jar + kerb-admin-1.0.1.jar + kerb-client-1.0.1.jar + kerb-common-1.0.1.jar + kerb-core-1.0.1.jar + kerb-crypto-1.0.1.jar + kerb-identity-1.0.1.jar + kerb-server-1.0.1.jar + kerb-simplekdc-1.0.1.jar + kerb-util-1.0.1.jar + kerby-asn1-1.0.1.jar + kerby-config-1.0.1.jar + kerby-pkix-1.0.1.jar + kerby-util-1.0.1.jar + kerby-xdr-1.0.1.jar + kotlin-stdlib-1.4.10.jar + kotlin-stdlib-common-1.4.10.jar + listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar + log4j-1.2.17.jar + log4j-api-2.20.0.jar + log4j-core-2.20.0.jar + log4j-layout-template-json-2.20.0.jar + lucene-analysis-common-9.5.0.jar + lucene-backward-codecs-9.5.0.jar + lucene-core-9.5.0.jar + lucene-queryparser-9.5.0.jar + lz4-java-1.8.0.jar + magnolia_2.13-0.17.0.jar + mercator_2.13-0.2.1.jar + metrics-core-3.2.4.jar + netty-3.10.6.Final.jar + netty-all-4.1.77.Final.jar + netty-buffer-4.1.91.Final.jar + netty-codec-4.1.91.Final.jar + netty-codec-dns-4.1.77.Final.jar + netty-codec-haproxy-4.1.77.Final.jar + netty-codec-http-4.1.91.Final.jar + netty-codec-http2-4.1.77.Final.jar + netty-codec-memcache-4.1.77.Final.jar + netty-codec-mqtt-4.1.77.Final.jar + netty-codec-redis-4.1.77.Final.jar + netty-codec-smtp-4.1.77.Final.jar + netty-codec-socks-4.1.77.Final.jar + netty-codec-stomp-4.1.77.Final.jar + netty-codec-xml-4.1.77.Final.jar + netty-common-4.1.91.Final.jar + netty-handler-4.1.91.Final.jar + netty-handler-proxy-4.1.77.Final.jar + netty-resolver-4.1.91.Final.jar + netty-resolver-dns-4.1.77.Final.jar + netty-resolver-dns-classes-macos-4.1.77.Final.jar + netty-resolver-dns-native-macos-4.1.77.Final-osx-aarch_64.jar + netty-resolver-dns-native-macos-4.1.77.Final-osx-x86_64.jar + netty-transport-4.1.91.Final.jar + netty-transport-classes-epoll-4.1.91.Final.jar + netty-transport-classes-kqueue-4.1.91.Final.jar + netty-transport-native-epoll-4.1.91.Final-linux-aarch_64.jar + netty-transport-native-epoll-4.1.91.Final-linux-x86_64.jar + netty-transport-native-epoll-4.1.91.Final.jar + netty-transport-native-kqueue-4.1.91.Final-osx-aarch_64.jar + netty-transport-native-kqueue-4.1.91.Final-osx-x86_64.jar + netty-transport-native-unix-common-4.1.91.Final.jar + netty-transport-rxtx-4.1.77.Final.jar + netty-transport-sctp-4.1.77.Final.jar + netty-transport-udt-4.1.77.Final.jar + nimbus-jose-jwt-9.8.1.jar + objenesis-3.3.jar + okhttp-4.9.3.jar + okio-jvm-2.8.0.jar + opencsv-5.7.1.jar + opentest4j-1.2.0.jar + picocli-4.7.1.jar + reactor-core-3.5.4.jar + reload4j-1.2.22.jar + scala-library-2.13.10.jar + scala-reflect-2.13.10.jar + shiro-cache-1.11.0.jar + shiro-config-core-1.11.0.jar + shiro-config-ogdl-1.11.0.jar + shiro-core-1.11.0.jar + shiro-crypto-cipher-1.11.0.jar + shiro-crypto-core-1.11.0.jar + shiro-crypto-hash-1.11.0.jar + shiro-event-1.11.0.jar + shiro-lang-1.11.0.jar + snappy-java-1.1.8.2.jar + token-provider-1.0.1.jar + websocket-api-9.4.48.v20220622.jar + websocket-client-9.4.48.v20220622.jar + websocket-common-9.4.48.v20220622.jar + websocket-server-9.4.48.v20220622.jar + websocket-servlet-9.4.48.v20220622.jar + woodstox-core-5.4.0.jar + zookeeper-3.5.6.jar + zookeeper-jute-3.5.6.jar +------------------------------------------------------------------------------ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +------------------------------------------------------------------------------ +BSD-2-Clause + dnsjava-2.1.7.jar + jline-3.9.0.jar + jsch-0.1.55.jar + stax2-api-4.2.1.jar + zstd-jni-1.5.5-1.jar +------------------------------------------------------------------------------ + +Copyright + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +------------------------------------------------------------------------------ +BSD-3-Clause + antlr-2.7.7.jar + asm-9.3.jar + asm-9.5.jar + asm-analysis-9.5.jar + asm-commons-5.0.3.jar + asm-tree-9.5.jar + asm-util-9.5.jar + hamcrest-2.2.jar + hamcrest-core-2.2.jar + hamcrest-library-2.2.jar + leveldbjni-all-1.8.jar + paranamer-2.3.jar + protobuf-java-2.5.0.jar +------------------------------------------------------------------------------ + +Copyright (c) , +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +------------------------------------------------------------------------------ +Common Development and Distribution License Version 1.1 + jaxb-api-2.2.11.jar + jaxb-impl-2.2.3-1.jar + jersey-client-1.19.4.jar + jersey-core-1.19.4.jar + jersey-guice-1.19.4.jar + jersey-json-1.20.jar + jersey-server-1.19.4.jar + jersey-servlet-1.19.4.jar + jsp-api-2.1.jar + jsr311-api-1.1.1.jar +------------------------------------------------------------------------------ + +COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 + +1. Definitions. + + 1.1. "Contributor" means each individual or entity that creates or + contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Software, prior Modifications used by a Contributor (if any), and the + Modifications made by that particular Contributor. + + 1.3. "Covered Software" means (a) the Original Software, or (b) + Modifications, or (c) the combination of files containing Original + Software with files containing Modifications, in each case including + portions thereof. + + 1.4. "Executable" means the Covered Software in any form other than + Source Code. + + 1.5. "Initial Developer" means the individual or entity that first makes + Original Software available under this License. + + 1.6. "Larger Work" means a work which combines Covered Software or + portions thereof with code not governed by the terms of this License. + + 1.7. "License" means this document. + + 1.8. "Licensable" means having the right to grant, to the maximum extent + possible, whether at the time of the initial grant or subsequently + acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means the Source Code and Executable form of any of + the following: + + A. Any file that results from an addition to, deletion from or + modification of the contents of a file containing Original Software or + previous Modifications; + + B. Any new file that contains any part of the Original Software or + previous Modification; or + + C. Any new file that is contributed or otherwise made available under + the terms of this License. + + 1.10. "Original Software" means the Source Code and Executable form of + computer software code that is originally released under this License. + + 1.11. "Patent Claims" means any patent claim(s), now owned or hereafter + acquired, including without limitation, method, process, and apparatus + claims, in any patent Licensable by grantor. + + 1.12. "Source Code" means (a) the common form of computer software code + in which modifications are made and (b) associated documentation + included in or with such code. + + 1.13. "You" (or "Your") means an individual or a legal entity exercising + rights under, and complying with all of the terms of, this License. For + legal entities, "You" includes any entity which controls, is controlled + by, or is under common control with You. For purposes of this + definition, "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + +2. License Grants. + + 2.1. The Initial Developer Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to + third party intellectual property claims, the Initial Developer hereby + grants You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Initial Developer, to use, reproduce, modify, display, + perform, sublicense and distribute the Original Software (or portions + thereof), with or without Modifications, and/or as part of a Larger + Work; and + + (b) under Patent Claims infringed by the making, using or selling of + Original Software, to make, have made, use, practice, sell, and offer + for sale, and/or otherwise dispose of the Original Software (or portions + thereof). + + (c) The licenses granted in Sections 2.1(a) and (b) are effective on the + date Initial Developer first distributes or otherwise makes the Original + Software available to a third party under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: + (1) for code that You delete from the Original Software, or (2) for + infringements caused by: (i) the modification of the Original Software, + or (ii) the combination of the Original Software with other software or + devices. + + 2.2. Contributor Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to + third party intellectual property claims, each Contributor hereby grants + You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Contributor to use, reproduce, modify, display, perform, + sublicense and distribute the Modifications created by such Contributor + (or portions thereof), either on an unmodified basis, with other + Modifications, as Covered Software and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in + combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: (1) Modifications made by that Contributor (or + portions thereof); and (2) the combination of Modifications made by that + Contributor with its Contributor Version (or portions of such + combination). + + (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on + the date Contributor first distributes or otherwise makes the + Modifications available to a third party. + + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: + (1) for any code that Contributor has deleted from the Contributor + Version; (2) for infringements caused by: (i) third party modifications + of Contributor Version, or (ii) the combination of Modifications made by + that Contributor with other software (except as part of the Contributor + Version) or other devices; or (3) under Patent Claims infringed by + Covered Software in the absence of Modifications made by that + Contributor. + +3. Distribution Obligations. + + 3.1. Availability of Source Code. + + Any Covered Software that You distribute or otherwise make available in + Executable form must also be made available in Source Code form and that + Source Code form must be distributed only under the terms of this + License. You must include a copy of this License with every copy of the + Source Code form of the Covered Software You distribute or otherwise + make available. You must inform recipients of any such Covered Software + in Executable form as to how they can obtain such Covered Software in + Source Code form in a reasonable manner on or through a medium + customarily used for software exchange. + + 3.2. Modifications. + + The Modifications that You create or to which You contribute are + governed by the terms of this License. You represent that You believe + Your Modifications are Your original creation(s) and/or You have + sufficient rights to grant the rights conveyed by this License. + + 3.3. Required Notices. + + You must include a notice in each of Your Modifications that identifies + You as the Contributor of the Modification. You may not remove or alter + any copyright, patent or trademark notices contained within the Covered + Software, or any notices of licensing or any descriptive text giving + attribution to any Contributor or the Initial Developer. + + 3.4. Application of Additional Terms. + + You may not offer or impose any terms on any Covered Software in Source + Code form that alters or restricts the applicable version of this + License or the recipients' rights hereunder. You may choose to offer, + and to charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Software. However, you + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity or liability obligation is offered by + You alone, and You hereby agree to indemnify the Initial Developer and + every Contributor for any liability incurred by the Initial Developer or + such Contributor as a result of warranty, support, indemnity or + liability terms You offer. + + 3.5. Distribution of Executable Versions. + + You may distribute the Executable form of the Covered Software under the + terms of this License or under the terms of a license of Your choice, + which may contain terms different from this License, provided that You + are in compliance with the terms of this License and that the license + for the Executable form does not attempt to limit or alter the + recipient's rights in the Source Code form from the rights set forth in + this License. If You distribute the Covered Software in Executable form + under a different license, You must make it absolutely clear that any + terms which differ from this License are offered by You alone, not by + the Initial Developer or Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such terms + You offer. + + 3.6. Larger Works. + + You may create a Larger Work by combining Covered Software with other + code not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Software. + +4. Versions of the License. + + 4.1. New Versions. + + Oracle is the initial license steward and may publish revised and/or new + versions of this License from time to time. Each version will be given a + distinguishing version number. Except as provided in Section 4.3, no one + other than the license steward has the right to modify this License. + + 4.2. Effect of New Versions. + + You may always continue to use, distribute or otherwise make the Covered + Software available under the terms of the version of the License under + which You originally received the Covered Software. If the Initial + Developer includes a notice in the Original Software prohibiting it from + being distributed or otherwise made available under any subsequent + version of the License, You must distribute and make the Covered + Software available under the terms of the version of the License under + which You originally received the Covered Software. Otherwise, You may + also choose to use, distribute or otherwise make the Covered Software + available under the terms of any subsequent version of the License + published by the license steward. + + 4.3. Modified Versions. + + When You are an Initial Developer and You want to create a new license + for Your Original Software, You may create and use a modified version of + this License if You: (a) rename the license and remove any references to + the name of the license steward (except to note that the license differs + from this License); and (b) otherwise make it clear that the license + contains terms which differ from this License. + +5. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED + SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY + RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME + THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS + DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO + USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + +6. TERMINATION. + + 6.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. Provisions + which, by their nature, must remain in effect beyond the termination of + this License shall survive. + + 6.2. If You assert a patent infringement claim (excluding declaratory + judgment actions) against Initial Developer or a Contributor (the + Initial Developer or Contributor against whom You assert such claim is + referred to as "Participant") alleging that the Participant Software + (meaning the Contributor Version where the Participant is a Contributor + or the Original Software where the Participant is the Initial Developer) + directly or indirectly infringes any patent, then any and all rights + granted directly or indirectly to You by such Participant, the Initial + Developer (if the Initial Developer is not the Participant) and all + Contributors under Sections 2.1 and/or 2.2 of this License shall, upon + 60 days notice from Participant terminate prospectively and + automatically at the expiration of such 60 day notice period, unless if + within such 60 day period You withdraw Your claim with respect to the + Participant Software against such Participant either unilaterally or + pursuant to a written agreement with Participant. + + 6.3. If You assert a patent infringement claim against Participant + alleging that the Participant Software directly or indirectly infringes + any patent where such claim is resolved (such as by license or + settlement) prior to the initiation of patent infringement litigation, + then the reasonable value of the licenses granted by such Participant + under Sections 2.1 or 2.2 shall be taken into account in determining the + amount or value of any payment or license. + + 6.4. In the event of termination under Sections 6.1 or 6.2 above, all + end user licenses that have been validly granted by You or any + distributor hereunder prior to termination (excluding licenses granted + to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED + SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY + PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES + OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF + GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL + OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION + AND LIMITATION MAY NOT APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + + The Covered Software is a "commercial item," as that term is defined in + 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer + software" (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1)) + and "commercial computer software documentation" as such terms are used + in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and + 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government + End Users acquire Covered Software with only those rights set forth + herein. This U.S. Government Rights clause is in lieu of, and + supersedes, any other FAR, DFAR, or other clause or provision that + addresses Government rights in computer software under this License. + +9. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter + hereof. If any provision of this License is held to be unenforceable, + such provision shall be reformed only to the extent necessary to make it + enforceable. This License shall be governed by the law of the + jurisdiction specified in a notice contained within the Original + Software (except to the extent applicable law, if any, provides + otherwise), excluding such jurisdiction's conflict-of-law provisions. + Any litigation relating to this License shall be subject to the + jurisdiction of the courts located in the jurisdiction and venue + specified in a notice contained within the Original Software, with the + losing party responsible for costs, including, without limitation, court + costs and reasonable attorneys' fees and expenses. The application of + the United Nations Convention on Contracts for the International Sale of + Goods is expressly excluded. Any law or regulation which provides that + the language of a contract shall be construed against the drafter shall + not apply to this License. You agree that You alone are responsible for + compliance with the United States export administration regulations (and + the export control laws and regulation of any other countries) when You + use, distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, out + of its utilization of rights under this License and You agree to work + with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION +LICENSE (CDDL) + +The code released under the CDDL shall be governed by the laws of the +State of California (excluding conflict-of-law provisions). Any +litigation relating to this License shall be subject to the jurisdiction +of the Federal Courts of the Northern District of California and the +state courts of the State of California, with venue lying in Santa Clara +County, California. + + +------------------------------------------------------------------------------ +Common Development and Distribution License Version 1.1 and GNU General Public License, version 2 with the Classpath Exception + javax.servlet-api-3.1.0.jar + javax.websocket-api-1.0.jar + javax.websocket-client-api-1.0.jar +------------------------------------------------------------------------------ + +COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 + +1. Definitions. + + 1.1. "Contributor" means each individual or entity that creates or + contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Software, prior Modifications used by a Contributor (if any), and the + Modifications made by that particular Contributor. + + 1.3. "Covered Software" means (a) the Original Software, or (b) + Modifications, or (c) the combination of files containing Original + Software with files containing Modifications, in each case including + portions thereof. + + 1.4. "Executable" means the Covered Software in any form other than + Source Code. + + 1.5. "Initial Developer" means the individual or entity that first makes + Original Software available under this License. + + 1.6. "Larger Work" means a work which combines Covered Software or + portions thereof with code not governed by the terms of this License. + + 1.7. "License" means this document. + + 1.8. "Licensable" means having the right to grant, to the maximum extent + possible, whether at the time of the initial grant or subsequently + acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means the Source Code and Executable form of any of + the following: + + A. Any file that results from an addition to, deletion from or + modification of the contents of a file containing Original Software or + previous Modifications; + + B. Any new file that contains any part of the Original Software or + previous Modification; or + + C. Any new file that is contributed or otherwise made available under + the terms of this License. + + 1.10. "Original Software" means the Source Code and Executable form of + computer software code that is originally released under this License. + + 1.11. "Patent Claims" means any patent claim(s), now owned or hereafter + acquired, including without limitation, method, process, and apparatus + claims, in any patent Licensable by grantor. + + 1.12. "Source Code" means (a) the common form of computer software code + in which modifications are made and (b) associated documentation + included in or with such code. + + 1.13. "You" (or "Your") means an individual or a legal entity exercising + rights under, and complying with all of the terms of, this License. For + legal entities, "You" includes any entity which controls, is controlled + by, or is under common control with You. For purposes of this + definition, "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + +2. License Grants. + + 2.1. The Initial Developer Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to + third party intellectual property claims, the Initial Developer hereby + grants You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Initial Developer, to use, reproduce, modify, display, + perform, sublicense and distribute the Original Software (or portions + thereof), with or without Modifications, and/or as part of a Larger + Work; and + + (b) under Patent Claims infringed by the making, using or selling of + Original Software, to make, have made, use, practice, sell, and offer + for sale, and/or otherwise dispose of the Original Software (or portions + thereof). + + (c) The licenses granted in Sections 2.1(a) and (b) are effective on the + date Initial Developer first distributes or otherwise makes the Original + Software available to a third party under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: + (1) for code that You delete from the Original Software, or (2) for + infringements caused by: (i) the modification of the Original Software, + or (ii) the combination of the Original Software with other software or + devices. + + 2.2. Contributor Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to + third party intellectual property claims, each Contributor hereby grants + You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Contributor to use, reproduce, modify, display, perform, + sublicense and distribute the Modifications created by such Contributor + (or portions thereof), either on an unmodified basis, with other + Modifications, as Covered Software and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in + combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: (1) Modifications made by that Contributor (or + portions thereof); and (2) the combination of Modifications made by that + Contributor with its Contributor Version (or portions of such + combination). + + (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on + the date Contributor first distributes or otherwise makes the + Modifications available to a third party. + + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: + (1) for any code that Contributor has deleted from the Contributor + Version; (2) for infringements caused by: (i) third party modifications + of Contributor Version, or (ii) the combination of Modifications made by + that Contributor with other software (except as part of the Contributor + Version) or other devices; or (3) under Patent Claims infringed by + Covered Software in the absence of Modifications made by that + Contributor. + +3. Distribution Obligations. + + 3.1. Availability of Source Code. + + Any Covered Software that You distribute or otherwise make available in + Executable form must also be made available in Source Code form and that + Source Code form must be distributed only under the terms of this + License. You must include a copy of this License with every copy of the + Source Code form of the Covered Software You distribute or otherwise + make available. You must inform recipients of any such Covered Software + in Executable form as to how they can obtain such Covered Software in + Source Code form in a reasonable manner on or through a medium + customarily used for software exchange. + + 3.2. Modifications. + + The Modifications that You create or to which You contribute are + governed by the terms of this License. You represent that You believe + Your Modifications are Your original creation(s) and/or You have + sufficient rights to grant the rights conveyed by this License. + + 3.3. Required Notices. + + You must include a notice in each of Your Modifications that identifies + You as the Contributor of the Modification. You may not remove or alter + any copyright, patent or trademark notices contained within the Covered + Software, or any notices of licensing or any descriptive text giving + attribution to any Contributor or the Initial Developer. + + 3.4. Application of Additional Terms. + + You may not offer or impose any terms on any Covered Software in Source + Code form that alters or restricts the applicable version of this + License or the recipients' rights hereunder. You may choose to offer, + and to charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Software. However, you + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity or liability obligation is offered by + You alone, and You hereby agree to indemnify the Initial Developer and + every Contributor for any liability incurred by the Initial Developer or + such Contributor as a result of warranty, support, indemnity or + liability terms You offer. + + 3.5. Distribution of Executable Versions. + + You may distribute the Executable form of the Covered Software under the + terms of this License or under the terms of a license of Your choice, + which may contain terms different from this License, provided that You + are in compliance with the terms of this License and that the license + for the Executable form does not attempt to limit or alter the + recipient's rights in the Source Code form from the rights set forth in + this License. If You distribute the Covered Software in Executable form + under a different license, You must make it absolutely clear that any + terms which differ from this License are offered by You alone, not by + the Initial Developer or Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such terms + You offer. + + 3.6. Larger Works. + + You may create a Larger Work by combining Covered Software with other + code not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Software. + +4. Versions of the License. + + 4.1. New Versions. + + Oracle is the initial license steward and may publish revised and/or new + versions of this License from time to time. Each version will be given a + distinguishing version number. Except as provided in Section 4.3, no one + other than the license steward has the right to modify this License. + + 4.2. Effect of New Versions. + + You may always continue to use, distribute or otherwise make the Covered + Software available under the terms of the version of the License under + which You originally received the Covered Software. If the Initial + Developer includes a notice in the Original Software prohibiting it from + being distributed or otherwise made available under any subsequent + version of the License, You must distribute and make the Covered + Software available under the terms of the version of the License under + which You originally received the Covered Software. Otherwise, You may + also choose to use, distribute or otherwise make the Covered Software + available under the terms of any subsequent version of the License + published by the license steward. + + 4.3. Modified Versions. + + When You are an Initial Developer and You want to create a new license + for Your Original Software, You may create and use a modified version of + this License if You: (a) rename the license and remove any references to + the name of the license steward (except to note that the license differs + from this License); and (b) otherwise make it clear that the license + contains terms which differ from this License. + +5. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED + SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY + RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME + THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS + DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO + USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + +6. TERMINATION. + + 6.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. Provisions + which, by their nature, must remain in effect beyond the termination of + this License shall survive. + + 6.2. If You assert a patent infringement claim (excluding declaratory + judgment actions) against Initial Developer or a Contributor (the + Initial Developer or Contributor against whom You assert such claim is + referred to as "Participant") alleging that the Participant Software + (meaning the Contributor Version where the Participant is a Contributor + or the Original Software where the Participant is the Initial Developer) + directly or indirectly infringes any patent, then any and all rights + granted directly or indirectly to You by such Participant, the Initial + Developer (if the Initial Developer is not the Participant) and all + Contributors under Sections 2.1 and/or 2.2 of this License shall, upon + 60 days notice from Participant terminate prospectively and + automatically at the expiration of such 60 day notice period, unless if + within such 60 day period You withdraw Your claim with respect to the + Participant Software against such Participant either unilaterally or + pursuant to a written agreement with Participant. + + 6.3. If You assert a patent infringement claim against Participant + alleging that the Participant Software directly or indirectly infringes + any patent where such claim is resolved (such as by license or + settlement) prior to the initiation of patent infringement litigation, + then the reasonable value of the licenses granted by such Participant + under Sections 2.1 or 2.2 shall be taken into account in determining the + amount or value of any payment or license. + + 6.4. In the event of termination under Sections 6.1 or 6.2 above, all + end user licenses that have been validly granted by You or any + distributor hereunder prior to termination (excluding licenses granted + to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED + SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY + PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES + OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF + GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL + OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION + AND LIMITATION MAY NOT APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + + The Covered Software is a "commercial item," as that term is defined in + 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer + software" (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1)) + and "commercial computer software documentation" as such terms are used + in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and + 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government + End Users acquire Covered Software with only those rights set forth + herein. This U.S. Government Rights clause is in lieu of, and + supersedes, any other FAR, DFAR, or other clause or provision that + addresses Government rights in computer software under this License. + +9. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter + hereof. If any provision of this License is held to be unenforceable, + such provision shall be reformed only to the extent necessary to make it + enforceable. This License shall be governed by the law of the + jurisdiction specified in a notice contained within the Original + Software (except to the extent applicable law, if any, provides + otherwise), excluding such jurisdiction's conflict-of-law provisions. + Any litigation relating to this License shall be subject to the + jurisdiction of the courts located in the jurisdiction and venue + specified in a notice contained within the Original Software, with the + losing party responsible for costs, including, without limitation, court + costs and reasonable attorneys' fees and expenses. The application of + the United Nations Convention on Contracts for the International Sale of + Goods is expressly excluded. Any law or regulation which provides that + the language of a contract shall be construed against the drafter shall + not apply to this License. You agree that You alone are responsible for + compliance with the United States export administration regulations (and + the export control laws and regulation of any other countries) when You + use, distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, out + of its utilization of rights under this License and You agree to work + with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION +LICENSE (CDDL) + +The code released under the CDDL shall be governed by the laws of the +State of California (excluding conflict-of-law provisions). Any +litigation relating to this License shall be subject to the jurisdiction +of the Federal Courts of the Northern District of California and the +state courts of the State of California, with venue lying in Santa Clara +County, California. + + + + +The GNU General Public License (GPL) Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, +Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to +share and change it. By contrast, the GNU General Public License is +intended to guarantee your freedom to share and change free software--to +make sure the software is free for all its users. This General Public +License applies to most of the Free Software Foundation's software and +to any other program whose authors commit to using it. (Some other Free +Software Foundation software is covered by the GNU Library General +Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. +Our General Public Licenses are designed to make sure that you have the +freedom to distribute copies of free software (and charge for this +service if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone +to deny you these rights or to ask you to surrender the rights. These +restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis +or for a fee, you must give the recipients all the rights that you have. +You must make sure that they, too, receive or can get the source code. +And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + +Finally, any free program is threatened constantly by software patents. +We wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program +proprietary. To prevent this, we have made it clear that any patent must +be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and +modification follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a +notice placed by the copyright holder saying it may be distributed under +the terms of this General Public License. The "Program", below, refers +to any such program or work, and a "work based on the Program" means +either the Program or any derivative work under copyright law: that is +to say, a work containing the Program or a portion of it, either +verbatim or with modifications and/or translated into another language. +(Hereinafter, translation is included without limitation in the term +"modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of running +the Program is not restricted, and the output from the Program is +covered only if its contents constitute a work based on the Program +(independent of having been made by running the Program). Whether that +is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source +code as you receive it, in any medium, provided that you conspicuously +and appropriately publish on each copy an appropriate copyright notice +and disclaimer of warranty; keep intact all the notices that refer to +this License and to the absence of any warranty; and give any other +recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of +it, thus forming a work based on the Program, and copy and distribute +such modifications or work under the terms of Section 1 above, provided +that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole + or in part contains or is derived from the Program or any part thereof, + to be licensed as a whole at no charge to all third parties under the + terms of this License. + + c) If the modified program normally reads commands interactively when + run, you must cause it, when started running for such interactive use in + the most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may + redistribute the program under these conditions, and telling the user + how to view a copy of this License. (Exception: if the Program itself is + interactive but does not normally print such an announcement, your work + based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, and +can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based on +the Program, the distribution of the whole must be on the terms of this +License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of a +storage or distribution medium does not bring the other work under the +scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections +1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 + above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source code +means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to control +compilation and installation of the executable. However, as a special +exception, the source code distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies the +executable. + +If distribution of executable or object code is made by offering access +to copy from a designated place, then offering equivalent access to copy +the source code from the same place counts as distribution of the source +code, even though third parties are not compelled to copy the source +along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt otherwise +to copy, modify, sublicense or distribute the Program is void, and will +automatically terminate your rights under this License. However, parties +who have received copies, or rights, from you under this License will +not have their licenses terminated so long as such parties remain in +full compliance. + +5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and all +its terms and conditions for copying, distributing or modifying the +Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further restrictions +on the recipients' exercise of the rights granted herein. You are not +responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot distribute +so as to satisfy simultaneously your obligations under this License and +any other pertinent obligations, then as a consequence you may not +distribute the Program at all. For example, if a patent license would +not permit royalty-free redistribution of the Program by all those who +receive copies directly or indirectly through you, then the only way you +could satisfy both it and this License would be to refrain entirely from +distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is implemented +by public license practices. Many people have made generous +contributions to the wide range of software distributed through that +system in reliance on consistent application of that system; it is up to +the author/donor to decide if he or she is willing to distribute +software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be +a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License may +add an explicit geographical distribution limitation excluding those +countries, so that distribution is permitted only in or among countries +not thus excluded. In such case, this License incorporates the +limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Program does not specify a version +number of this License, you may choose any version ever published by the +Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the +author to ask for permission. For software which is copyrighted by the +Free Software Foundation, write to the Free Software Foundation; we +sometimes make exceptions for this. Our decision will be guided by the +two goals of preserving the free status of all derivatives of our free +software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER +EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE +ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH +YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL +NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR +DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL +DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM +(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED +INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF +THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR +OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these +terms. + +To do so, attach the following notices to the program. It is safest to +attach them to the start of each source file to most effectively convey +the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General + Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision + comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is + free software, and you are welcome to redistribute it under certain + conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the +appropriate parts of the General Public License. Of course, the commands +you use may be called something other than `show w' and `show c'; they +could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications +with the library. If this is what you want to do, use the GNU Library +General Public License instead of this License. + +# + +"CLASSPATH" EXCEPTION TO THE GPL VERSION 2 + +Certain source files distributed by Oracle are subject to the following +clarification and special exception to the GPL Version 2, but only where +Oracle has expressly included in the particular source file's header the +words "Oracle designates this particular file as subject to the +"Classpath" exception as provided by Oracle in the License file that +accompanied this code." + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License Version 2 cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under terms +of your choice, provided that you also meet, for each linked independent +module, the terms and conditions of the license of that module. An +independent module is a module which is not derived from or based on +this library. If you modify this library, you may extend this exception +to your version of the library, but you are not obligated to do so. If +you do not wish to do so, delete this exception statement from your +version. + + +------------------------------------------------------------------------------ +Eclipse Distribution License - v 1.0 + FastInfoset-1.2.16.jar + eclipse-collections-11.1.0.jar + eclipse-collections-api-11.1.0.jar + istack-commons-runtime-3.0.8.jar + jakarta.activation-api-1.2.2.jar + jakarta.xml.bind-api-2.3.3.jar + jaxb-runtime-2.3.2.jar + jersey-client-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + stax-ex-1.8.1.jar + txw2-2.3.2.jar +------------------------------------------------------------------------------ + +Eclipse Distribution License - v 1.0 +Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. +Neither the name of the Eclipse Foundation, Inc. nor the names of its +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------ +Eclipse Public License - v 1.0 + eclipse-collections-11.1.0.jar + eclipse-collections-api-11.1.0.jar + junit-4.13.2.jar +------------------------------------------------------------------------------ + +Eclipse Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC +LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM +CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + a) in the case of the initial Contributor, the initial code and + documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + +where such changes and/or additions to the Program originate from and are +distributed by that particular Contributor. A Contribution 'originates' from a +Contributor if it was added to the Program by such Contributor itself or +anyone acting on such Contributor's behalf. Contributions do not include +additions to the Program which: (i) are separate modules of software +distributed in conjunction with the Program under their own license agreement, +and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which are +necessarily infringed by the use or sale of its Contribution alone or when +combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby grants + Recipient a non-exclusive, worldwide, royalty-free copyright license to + reproduce, prepare derivative works of, publicly display, publicly + perform, distribute and sublicense the Contribution of such Contributor, + if any, and such derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor hereby grants + Recipient a non-exclusive, worldwide, royalty-free patent license under + Licensed Patents to make, use, sell, offer to sell, import and otherwise + transfer the Contribution of such Contributor, if any, in source code and + object code form. This patent license shall apply to the combination of + the Contribution and the Program if, at the time the Contribution is + added by the Contributor, such addition of the Contribution causes such + combination to be covered by the Licensed Patents. The patent license + shall not apply to any other combinations which include the Contribution. + No hardware per se is licensed hereunder. + + c) Recipient understands that although each Contributor grants the + licenses to its Contributions set forth herein, no assurances are + provided by any Contributor that the Program does not infringe the patent + or other intellectual property rights of any other entity. Each + Contributor disclaims any liability to Recipient for claims brought by + any other entity based on infringement of intellectual property rights or + otherwise. As a condition to exercising the rights and licenses granted + hereunder, each Recipient hereby assumes sole responsibility to secure + any other intellectual property rights needed, if any. For example, if a + third party patent license is required to allow Recipient to distribute + the Program, it is Recipient's responsibility to acquire that license + before distributing the Program. + + d) Each Contributor represents that to its knowledge it has sufficient + copyright rights in its Contribution, if any, to grant the copyright + license set forth in this Agreement. + +3. REQUIREMENTS +A Contributor may choose to distribute the Program in object code form under +its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + i) effectively disclaims on behalf of all Contributors all + warranties and conditions, express and implied, including warranties + or conditions of title and non-infringement, and implied warranties + or conditions of merchantability and fitness for a particular + purpose; + ii) effectively excludes on behalf of all Contributors all liability + for damages, including direct, indirect, special, incidental and + consequential damages, such as lost profits; + iii) states that any provisions which differ from this Agreement are + offered by that Contributor alone and not by any other party; and + iv) states that source code for the Program is available from such + Contributor, and informs licensees how to obtain it in a reasonable + manner on or through a medium customarily used for software + exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of the + Program. +Contributors may not remove or alter any copyright notices contained within +the Program. + +Each Contributor must identify itself as the originator of its Contribution, +if any, in a manner that reasonably allows subsequent Recipients to identify +the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION +Commercial distributors of software may accept certain responsibilities with +respect to end users, business partners and the like. While this license is +intended to facilitate the commercial use of the Program, the Contributor who +includes the Program in a commercial product offering should do so in a manner +which does not create potential liability for other Contributors. Therefore, +if a Contributor includes the Program in a commercial product offering, such +Contributor ("Commercial Contributor") hereby agrees to defend and indemnify +every other Contributor ("Indemnified Contributor") against any losses, +damages and costs (collectively "Losses") arising from claims, lawsuits and +other legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such Commercial +Contributor in connection with its distribution of the Program in a commercial +product offering. The obligations in this section do not apply to any claims +or Losses relating to any actual or alleged intellectual property +infringement. In order to qualify, an Indemnified Contributor must: a) +promptly notify the Commercial Contributor in writing of such claim, and b) +allow the Commercial Contributor to control, and cooperate with the Commercial +Contributor in, the defense and any related settlement negotiations. The +Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product +offering, Product X. That Contributor is then a Commercial Contributor. If +that Commercial Contributor then makes performance claims, or offers +warranties related to Product X, those performance claims and warranties are +such Commercial Contributor's responsibility alone. Under this section, the +Commercial Contributor would have to defend claims against the other +Contributors related to those performance claims and warranties, and if a +court requires any other Contributor to pay any damages as a result, the +Commercial Contributor must pay those damages. + +5. NO WARRANTY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR +IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each +Recipient is solely responsible for determining the appropriateness of using +and distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement , including but not limited to the +risks and costs of program errors, compliance with applicable laws, damage to +or loss of data, programs or equipment, and unavailability or interruption of +operations. + +6. DISCLAIMER OF LIABILITY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY +CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION +LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE +EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of the +remainder of the terms of this Agreement, and without further action by the +parties hereto, such provision shall be reformed to the minimum extent +necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Program itself +(excluding combinations of the Program with other software or hardware) +infringes such Recipient's patent(s), then such Recipient's rights granted +under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to +comply with any of the material terms or conditions of this Agreement and does +not cure such failure in a reasonable period of time after becoming aware of +such noncompliance. If all Recipient's rights under this Agreement terminate, +Recipient agrees to cease use and distribution of the Program as soon as +reasonably practicable. However, Recipient's obligations under this Agreement +and any licenses granted by Recipient relating to the Program shall continue +and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in +order to avoid inconsistency the Agreement is copyrighted and may only be +modified in the following manner. The Agreement Steward reserves the right to +publish new versions (including revisions) of this Agreement from time to +time. No one other than the Agreement Steward has the right to modify this +Agreement. The Eclipse Foundation is the initial Agreement Steward. The +Eclipse Foundation may assign the responsibility to serve as the Agreement +Steward to a suitable separate entity. Each new version of the Agreement will +be given a distinguishing version number. The Program (including +Contributions) may always be distributed subject to the version of the +Agreement under which it was received. In addition, after a new version of the +Agreement is published, Contributor may elect to distribute the Program +(including its Contributions) under the new version. Except as expressly +stated in Sections 2(a) and 2(b) above, Recipient receives no rights or +licenses to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in the +Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to this +Agreement will bring a legal action under this Agreement more than one year +after the cause of action arose. Each party waives its rights to a jury trial +in any resulting litigation. + +------------------------------------------------------------------------------ +Eclipse Public License - v 2.0 + hk2-api-2.6.1.jar + hk2-locator-2.6.1.jar + hk2-utils-2.6.1.jar + jakarta.annotation-api-1.3.5.jar + jakarta.inject-2.6.1.jar + jakarta.ws.rs-api-2.1.6.jar + jersey-client-2.34.jar + jersey-common-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + jersey-server-2.34.jar + junit-jupiter-5.9.2.jar + junit-jupiter-api-5.9.2.jar + junit-jupiter-engine-5.9.2.jar + junit-jupiter-params-5.9.2.jar + junit-platform-commons-1.9.2.jar + junit-platform-engine-1.9.2.jar + junit-platform-launcher-1.9.2.jar + junit-platform-testkit-1.9.2.jar + osgi-resource-locator-1.0.3.jar +------------------------------------------------------------------------------ + +Eclipse Public License - v 2.0 + + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE + PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION + OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + + a) in the case of the initial Contributor, the initial content + Distributed under this Agreement, and + + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + where such changes and/or additions to the Program originate from + and are Distributed by that particular Contributor. A Contribution + "originates" from a Contributor if it was added to the Program by + such Contributor itself or anyone acting on such Contributor's behalf. + Contributions do not include changes or additions to the Program that + are not Modified Works. + +"Contributor" means any person or entity that Distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which +are necessarily infringed by the use or sale of its Contribution alone +or when combined with the Program. + +"Program" means the Contributions Distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement +or any Secondary License (as applicable), including Contributors. + +"Derivative Works" shall mean any work, whether in Source Code or other +form, that is based on (or derived from) the Program and for which the +editorial revisions, annotations, elaborations, or other modifications +represent, as a whole, an original work of authorship. + +"Modified Works" shall mean any work in Source Code or other form that +results from an addition to, deletion from, or modification of the +contents of the Program, including, for purposes of clarity any new file +in Source Code form that contains any contents of the Program. Modified +Works shall not include works that contain only declarations, +interfaces, types, classes, structures, or files of the Program solely +in each case in order to link to, bind by name, or subclass the Program +or Modified Works thereof. + +"Distribute" means the acts of a) distributing or b) making available +in any manner that enables the transfer of a copy. + +"Source Code" means the form of a Program preferred for making +modifications, including but not limited to software source code, +documentation source, and configuration files. + +"Secondary License" means either the GNU General Public License, +Version 2.0, or any later versions of that license, including any +exceptions or additional permissions as identified by the initial +Contributor. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free copyright + license to reproduce, prepare Derivative Works of, publicly display, + publicly perform, Distribute and sublicense the Contribution of such + Contributor, if any, and such Derivative Works. + + b) Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free patent + license under Licensed Patents to make, use, sell, offer to sell, + import and otherwise transfer the Contribution of such Contributor, + if any, in Source Code or other form. This patent license shall + apply to the combination of the Contribution and the Program if, at + the time the Contribution is added by the Contributor, such addition + of the Contribution causes such combination to be covered by the + Licensed Patents. The patent license shall not apply to any other + combinations which include the Contribution. No hardware per se is + licensed hereunder. + + c) Recipient understands that although each Contributor grants the + licenses to its Contributions set forth herein, no assurances are + provided by any Contributor that the Program does not infringe the + patent or other intellectual property rights of any other entity. + Each Contributor disclaims any liability to Recipient for claims + brought by any other entity based on infringement of intellectual + property rights or otherwise. As a condition to exercising the + rights and licenses granted hereunder, each Recipient hereby + assumes sole responsibility to secure any other intellectual + property rights needed, if any. For example, if a third party + patent license is required to allow Recipient to Distribute the + Program, it is Recipient's responsibility to acquire that license + before distributing the Program. + + d) Each Contributor represents that to its knowledge it has + sufficient copyright rights in its Contribution, if any, to grant + the copyright license set forth in this Agreement. + + e) Notwithstanding the terms of any Secondary License, no + Contributor makes additional grants to any Recipient (other than + those set forth in this Agreement) as a result of such Recipient's + receipt of the Program under the terms of a Secondary License + (if permitted under the terms of Section 3). + +3. REQUIREMENTS + +3.1 If a Contributor Distributes the Program in any form, then: + + a) the Program must also be made available as Source Code, in + accordance with section 3.2, and the Contributor must accompany + the Program with a statement that the Source Code for the Program + is available under this Agreement, and informs Recipients how to + obtain it in a reasonable manner on or through a medium customarily + used for software exchange; and + + b) the Contributor may Distribute the Program under a license + different than this Agreement, provided that such license: + i) effectively disclaims on behalf of all other Contributors all + warranties and conditions, express and implied, including + warranties or conditions of title and non-infringement, and + implied warranties or conditions of merchantability and fitness + for a particular purpose; + + ii) effectively excludes on behalf of all other Contributors all + liability for damages, including direct, indirect, special, + incidental and consequential damages, such as lost profits; + + iii) does not attempt to limit or alter the recipients' rights + in the Source Code under section 3.2; and + + iv) requires any subsequent distribution of the Program by any + party to be under a license that satisfies the requirements + of this section 3. + +3.2 When the Program is Distributed as Source Code: + + a) it must be made available under this Agreement, or if the + Program (i) is combined with other material in a separate file or + files made available under a Secondary License, and (ii) the initial + Contributor attached to the Source Code the notice described in + Exhibit A of this Agreement, then the Program may be made available + under the terms of such Secondary Licenses, and + + b) a copy of this Agreement must be included with each copy of + the Program. + +3.3 Contributors may not remove or alter any copyright, patent, +trademark, attribution notices, disclaimers of warranty, or limitations +of liability ("notices") contained within the Program from any copy of +the Program which they Distribute, provided that Contributors may add +their own appropriate notices. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities +with respect to end users, business partners and the like. While this +license is intended to facilitate the commercial use of the Program, +the Contributor who includes the Program in a commercial product +offering should do so in a manner which does not create potential +liability for other Contributors. Therefore, if a Contributor includes +the Program in a commercial product offering, such Contributor +("Commercial Contributor") hereby agrees to defend and indemnify every +other Contributor ("Indemnified Contributor") against any losses, +damages and costs (collectively "Losses") arising from claims, lawsuits +and other legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such +Commercial Contributor in connection with its distribution of the Program +in a commercial product offering. The obligations in this section do not +apply to any claims or Losses relating to any actual or alleged +intellectual property infringement. In order to qualify, an Indemnified +Contributor must: a) promptly notify the Commercial Contributor in +writing of such claim, and b) allow the Commercial Contributor to control, +and cooperate with the Commercial Contributor in, the defense and any +related settlement negotiations. The Indemnified Contributor may +participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those performance +claims and warranties, and if a court requires any other Contributor to +pay any damages as a result, the Commercial Contributor must pay +those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT +PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN "AS IS" +BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR +IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF +TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR +PURPOSE. Each Recipient is solely responsible for determining the +appropriateness of using and distributing the Program and assumes all +risks associated with its exercise of rights under this Agreement, +including but not limited to the risks and costs of program errors, +compliance with applicable laws, damage to or loss of data, programs +or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT +PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS +SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST +PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE +EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further +action by the parties hereto, such provision shall be reformed to the +minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity +(including a cross-claim or counterclaim in a lawsuit) alleging that the +Program itself (excluding combinations of the Program with other software +or hardware) infringes such Recipient's patent(s), then such Recipient's +rights granted under Section 2(b) shall terminate as of the date such +litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it +fails to comply with any of the material terms or conditions of this +Agreement and does not cure such failure in a reasonable period of +time after becoming aware of such noncompliance. If all Recipient's +rights under this Agreement terminate, Recipient agrees to cease use +and distribution of the Program as soon as reasonably practicable. +However, Recipient's obligations under this Agreement and any licenses +granted by Recipient relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, +but in order to avoid inconsistency the Agreement is copyrighted and +may only be modified in the following manner. The Agreement Steward +reserves the right to publish new versions (including revisions) of +this Agreement from time to time. No one other than the Agreement +Steward has the right to modify this Agreement. The Eclipse Foundation +is the initial Agreement Steward. The Eclipse Foundation may assign the +responsibility to serve as the Agreement Steward to a suitable separate +entity. Each new version of the Agreement will be given a distinguishing +version number. The Program (including Contributions) may always be +Distributed subject to the version of the Agreement under which it was +received. In addition, after a new version of the Agreement is published, +Contributor may elect to Distribute the Program (including its +Contributions) under the new version. + +Except as expressly stated in Sections 2(a) and 2(b) above, Recipient +receives no rights or licenses to the intellectual property of any +Contributor under this Agreement, whether expressly, by implication, +estoppel or otherwise. All rights in the Program not expressly granted +under this Agreement are reserved. Nothing in this Agreement is intended +to be enforceable by any entity that is not a Contributor or Recipient. +No third-party beneficiary rights are created under this Agreement. + +Exhibit A - Form of Secondary Licenses Notice + +"This Source Code may also be made available under the following +Secondary Licenses when the conditions for such availability set forth +in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), +version(s), and exceptions or additional permissions here}." + + Simply including a copy of this Agreement, including this Exhibit A + is not sufficient to license the Source Code under Secondary Licenses. + + If it is not possible or desirable to put the notice in a particular + file, then You may include the notice in a location (such as a LICENSE + file in a relevant directory) where a recipient would be likely to + look for such a notice. + + You may add additional accurate notices of copyright ownership. + +------------------------------------------------------------------------------ +GNU General Public License (GPL), version 2, with the Classpath exception + jnr-posix-3.0.44.jar +------------------------------------------------------------------------------ + +GNU General Public License, version 2, +with the Classpath Exception +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., 59 + Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. + + + + +ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. + + +------------------------------------------------------------------------------ +MIT + animal-sniffer-annotations-1.17.jar + bcpkix-jdk15on-1.70.jar + bcprov-jdk15on-1.70.jar + bcutil-jdk15on-1.70.jar + cassandra-1.17.6.jar + checker-qual-2.5.2.jar + checker-qual-3.12.0.jar + couchbase-1.17.6.jar + database-commons-1.17.6.jar + duct-tape-1.0.8.jar + elasticsearch-1.17.6.jar + jdbc-1.17.6.jar + jersey-client-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + jnr-x86asm-1.0.2.jar + localstack-1.17.6.jar + mockito-core-5.2.0.jar + mssql-jdbc-6.2.1.jre7.jar + mysql-1.17.6.jar + neo4j-1.17.6.jar + postgresql-1.17.6.jar + reactive-streams-1.0.4.jar + slf4j-api-1.7.36.jar + slf4j-api-2.0.7.jar + slf4j-nop-2.0.7.jar + slf4j-simple-1.7.36.jar + testcontainers-1.17.6.jar +------------------------------------------------------------------------------ + +The MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +------------------------------------------------------------------------------ +MPL-2.0 + kiama_2.13-2.5.0.jar +------------------------------------------------------------------------------ + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + + +------------------------------------------------------------------------------ +Public Domain, per Creative Commons CC0 + HdrHistogram-2.1.9.jar + aopalliance-1.0.jar + jersey-client-2.34.jar + jersey-common-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar +------------------------------------------------------------------------------ + +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. + +------------------------------------------------------------------------------ +The Go license + re2j-1.1.jar +------------------------------------------------------------------------------ + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/NOTICE.txt b/NOTICE.txt new file mode 100644 index 0000000000..c522e74cc9 --- /dev/null +++ b/NOTICE.txt @@ -0,0 +1,484 @@ +Neo4j +Copyright © 2002-2023 Neo4j Sweden AB (referred to in this notice as "Neo4j") +[http://neo4j.com] + +This product includes software ("Software") developed by Neo4j. + +The copyright in the bundled Neo4j graph database (including the +Software) is owned by Neo4j. The Software developed and owned +by Neo4j is licensed under the GNU GENERAL PUBLIC LICENSE Version 3 +(http://www.fsf.org/licensing/licenses/gpl-3.0.html) ("GPL") +to all third parties and that license, as required by the GPL, is +included in the LICENSE.txt file. + +However, if you have executed an End User Software License and Services +Agreement or an OEM Software License and Support Services Agreement, or +another commercial license agreement with Neo4j or one of its +affiliates (each, a "Commercial Agreement"), the terms of the license in +such Commercial Agreement will supersede the GPL and you may use the +software solely pursuant to the terms of the relevant Commercial +Agreement. + +Full license texts are found in LICENSES.txt. + + +Third-party licenses +-------------------- + +Apache License, 2.0 + jersey-client-2.34.jar + jersey-common-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + jersey-server-2.34.jar + +Apache-2.0 + FastInfoset-1.2.16.jar + HikariCP-java7-2.4.12.jar + RoaringBitmap-0.7.17.jar + WMI4Java-1.6.3.jar + accessors-smart-2.4.9.jar + annotations-17.0.0.jar + arrow-format-10.0.1.jar + arrow-memory-core-10.0.1.jar + arrow-memory-netty-10.0.1.jar + arrow-vector-10.0.1.jar + assertj-core-3.24.2.jar + audience-annotations-0.5.0.jar + avro-1.7.7.jar + awaitility-4.2.0.jar + aws-java-sdk-core-1.12.425.jar + aws-java-sdk-kms-1.12.425.jar + aws-java-sdk-s3-1.12.425.jar + byte-buddy-1.14.1.jar + byte-buddy-agent-1.14.1.jar + caffeine-3.1.6.jar + cassandra-driver-core-3.10.0.jar + commons-beanutils-1.9.4.jar + commons-cli-1.2.jar + commons-codec-1.15.jar + commons-collections-3.2.2.jar + commons-collections4-4.2.jar + commons-collections4-4.4.jar + commons-compress-1.23.0.jar + commons-configuration2-2.9.0.jar + commons-csv-1.9.0.jar + commons-daemon-1.0.13.jar + commons-io-2.11.0.jar + commons-lang3-3.12.0.jar + commons-logging-1.2.jar + commons-math3-3.6.1.jar + commons-net-3.9.0.jar + commons-text-1.10.0.jar + curator-client-4.2.0.jar + curator-framework-4.2.0.jar + curator-recipes-4.2.0.jar + docker-java-api-3.2.13.jar + docker-java-transport-3.2.13.jar + docker-java-transport-zerodep-3.2.13.jar + ehcache-3.3.1.jar + error_prone_annotations-2.2.0.jar + error_prone_annotations-2.7.1.jar + failureaccess-1.0.1.jar + failureaccess-1.0.jar + flatbuffers-java-1.12.0.jar + fst-2.50.jar + geronimo-jcache_1.0_spec-1.0-alpha-1.jar + gradle-tooling-api-7.3.jar + gson-2.9.0.jar + guava-27.0-jre.jar + guava-31.0.1-jre.jar + guice-4.0.jar + guice-servlet-4.0.jar + hadoop-annotations-3.3.5.jar + hadoop-auth-3.3.5.jar + hadoop-common-3.3.5-tests.jar + hadoop-common-3.3.5.jar + hadoop-hdfs-3.3.5-tests.jar + hadoop-hdfs-3.3.5.jar + hadoop-hdfs-client-3.3.5.jar + hadoop-mapreduce-client-app-3.3.5.jar + hadoop-mapreduce-client-common-3.3.5.jar + hadoop-mapreduce-client-core-3.3.5.jar + hadoop-mapreduce-client-hs-3.3.5.jar + hadoop-mapreduce-client-jobclient-3.3.5-tests.jar + hadoop-mapreduce-client-jobclient-3.3.5.jar + hadoop-mapreduce-client-shuffle-3.3.5.jar + hadoop-minicluster-3.3.5.jar + hadoop-registry-3.3.5.jar + hadoop-shaded-guava-1.1.1.jar + hadoop-shaded-protobuf_3_7-1.1.1.jar + hadoop-yarn-api-3.3.5.jar + hadoop-yarn-client-3.3.5.jar + hadoop-yarn-common-3.3.5.jar + hadoop-yarn-server-applicationhistoryservice-3.3.5.jar + hadoop-yarn-server-common-3.3.5.jar + hadoop-yarn-server-nodemanager-3.3.5.jar + hadoop-yarn-server-resourcemanager-3.3.5.jar + hadoop-yarn-server-tests-3.3.5-tests.jar + hadoop-yarn-server-timelineservice-3.3.5.jar + hadoop-yarn-server-web-proxy-3.3.5.jar + httpclient-4.5.13.jar + httpcore-4.4.13.jar + ion-java-1.0.2.jar + ipaddress-5.3.3.jar + ipaddress-5.4.0.jar + j2objc-annotations-1.1.jar + j2objc-annotations-1.3.jar + jPowerShell-3.0.jar + jProcesses-1.6.5.jar + jackson-annotations-2.14.2.jar + jackson-core-2.14.2.jar + jackson-core-asl-1.9.13.jar + jackson-databind-2.14.2.jar + jackson-dataformat-cbor-2.14.2.jar + jackson-dataformat-csv-2.14.2.jar + jackson-datatype-jsr310-2.13.4.jar + jackson-datatype-jsr310-2.14.2.jar + jackson-jaxrs-base-2.14.2.jar + jackson-jaxrs-json-provider-2.14.2.jar + jackson-mapper-asl-1.9.13.jar + jackson-module-jaxb-annotations-2.14.2.jar + jakarta.validation-api-2.0.2.jar + java-util-1.9.0.jar + javapoet-1.13.0.jar + javassist-3.25.0-GA.jar + javax-websocket-client-impl-9.4.48.v20220622.jar + javax-websocket-server-impl-9.4.48.v20220622.jar + javax.inject-1.jar + jcip-annotations-1.0-1.jar + jctools-core-4.0.1.jar + jettison-1.5.4.jar + jetty-http-9.4.50.v20221201.jar + jetty-io-9.4.50.v20221201.jar + jetty-security-9.4.50.v20221201.jar + jetty-server-9.4.50.v20221201.jar + jetty-servlet-9.4.50.v20221201.jar + jetty-util-9.4.50.v20221201.jar + jetty-util-ajax-9.4.50.v20221201.jar + jetty-webapp-9.4.50.v20221201.jar + jetty-xml-9.4.50.v20221201.jar + jffi-1.2.16-native.jar + jffi-1.2.16.jar + jmespath-java-1.12.425.jar + jna-5.13.0.jar + jnr-constants-0.9.9.jar + jnr-ffi-2.1.7.jar + joda-time-2.8.1.jar + json-io-2.5.1.jar + json-path-2.8.0.jar + json-smart-2.4.10.jar + jsr305-3.0.2.jar + kerb-admin-1.0.1.jar + kerb-client-1.0.1.jar + kerb-common-1.0.1.jar + kerb-core-1.0.1.jar + kerb-crypto-1.0.1.jar + kerb-identity-1.0.1.jar + kerb-server-1.0.1.jar + kerb-simplekdc-1.0.1.jar + kerb-util-1.0.1.jar + kerby-asn1-1.0.1.jar + kerby-config-1.0.1.jar + kerby-pkix-1.0.1.jar + kerby-util-1.0.1.jar + kerby-xdr-1.0.1.jar + kotlin-stdlib-1.4.10.jar + kotlin-stdlib-common-1.4.10.jar + listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar + log4j-1.2.17.jar + log4j-api-2.20.0.jar + log4j-core-2.20.0.jar + log4j-layout-template-json-2.20.0.jar + lucene-analysis-common-9.5.0.jar + lucene-backward-codecs-9.5.0.jar + lucene-core-9.5.0.jar + lucene-queryparser-9.5.0.jar + lz4-java-1.8.0.jar + magnolia_2.13-0.17.0.jar + mercator_2.13-0.2.1.jar + metrics-core-3.2.4.jar + netty-3.10.6.Final.jar + netty-all-4.1.77.Final.jar + netty-buffer-4.1.91.Final.jar + netty-codec-4.1.91.Final.jar + netty-codec-dns-4.1.77.Final.jar + netty-codec-haproxy-4.1.77.Final.jar + netty-codec-http-4.1.91.Final.jar + netty-codec-http2-4.1.77.Final.jar + netty-codec-memcache-4.1.77.Final.jar + netty-codec-mqtt-4.1.77.Final.jar + netty-codec-redis-4.1.77.Final.jar + netty-codec-smtp-4.1.77.Final.jar + netty-codec-socks-4.1.77.Final.jar + netty-codec-stomp-4.1.77.Final.jar + netty-codec-xml-4.1.77.Final.jar + netty-common-4.1.91.Final.jar + netty-handler-4.1.91.Final.jar + netty-handler-proxy-4.1.77.Final.jar + netty-resolver-4.1.91.Final.jar + netty-resolver-dns-4.1.77.Final.jar + netty-resolver-dns-classes-macos-4.1.77.Final.jar + netty-resolver-dns-native-macos-4.1.77.Final-osx-aarch_64.jar + netty-resolver-dns-native-macos-4.1.77.Final-osx-x86_64.jar + netty-transport-4.1.91.Final.jar + netty-transport-classes-epoll-4.1.91.Final.jar + netty-transport-classes-kqueue-4.1.91.Final.jar + netty-transport-native-epoll-4.1.91.Final-linux-aarch_64.jar + netty-transport-native-epoll-4.1.91.Final-linux-x86_64.jar + netty-transport-native-epoll-4.1.91.Final.jar + netty-transport-native-kqueue-4.1.91.Final-osx-aarch_64.jar + netty-transport-native-kqueue-4.1.91.Final-osx-x86_64.jar + netty-transport-native-unix-common-4.1.91.Final.jar + netty-transport-rxtx-4.1.77.Final.jar + netty-transport-sctp-4.1.77.Final.jar + netty-transport-udt-4.1.77.Final.jar + nimbus-jose-jwt-9.8.1.jar + objenesis-3.3.jar + okhttp-4.9.3.jar + okio-jvm-2.8.0.jar + opencsv-5.7.1.jar + opentest4j-1.2.0.jar + picocli-4.7.1.jar + reactor-core-3.5.4.jar + reload4j-1.2.22.jar + scala-library-2.13.10.jar + scala-reflect-2.13.10.jar + shiro-cache-1.11.0.jar + shiro-config-core-1.11.0.jar + shiro-config-ogdl-1.11.0.jar + shiro-core-1.11.0.jar + shiro-crypto-cipher-1.11.0.jar + shiro-crypto-core-1.11.0.jar + shiro-crypto-hash-1.11.0.jar + shiro-event-1.11.0.jar + shiro-lang-1.11.0.jar + snappy-java-1.1.8.2.jar + token-provider-1.0.1.jar + websocket-api-9.4.48.v20220622.jar + websocket-client-9.4.48.v20220622.jar + websocket-common-9.4.48.v20220622.jar + websocket-server-9.4.48.v20220622.jar + websocket-servlet-9.4.48.v20220622.jar + woodstox-core-5.4.0.jar + zookeeper-3.5.6.jar + zookeeper-jute-3.5.6.jar + +BSD 2-Clause + jersey-client-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + +BSD-2-Clause + dnsjava-2.1.7.jar + jline-3.9.0.jar + jsch-0.1.55.jar + stax2-api-4.2.1.jar + zstd-jni-1.5.5-1.jar + +BSD-3-Clause + antlr-2.7.7.jar + asm-9.3.jar + asm-9.5.jar + asm-analysis-9.5.jar + asm-commons-5.0.3.jar + asm-tree-9.5.jar + asm-util-9.5.jar + hamcrest-2.2.jar + hamcrest-core-2.2.jar + hamcrest-library-2.2.jar + leveldbjni-all-1.8.jar + paranamer-2.3.jar + protobuf-java-2.5.0.jar + +Common Development and Distribution License Version 1.1 + jaxb-api-2.2.11.jar + jaxb-impl-2.2.3-1.jar + jersey-client-1.19.4.jar + jersey-core-1.19.4.jar + jersey-guice-1.19.4.jar + jersey-json-1.20.jar + jersey-server-1.19.4.jar + jersey-servlet-1.19.4.jar + jsp-api-2.1.jar + jsr311-api-1.1.1.jar + +Common Development and Distribution License Version 1.1 and GNU General Public License, version 2 with the Classpath Exception + javax.servlet-api-3.1.0.jar + javax.websocket-api-1.0.jar + javax.websocket-client-api-1.0.jar + +Common Public License - v 1.0 + jnr-posix-3.0.44.jar + +Eclipse Distribution License - v 1.0 + FastInfoset-1.2.16.jar + eclipse-collections-11.1.0.jar + eclipse-collections-api-11.1.0.jar + istack-commons-runtime-3.0.8.jar + jakarta.activation-api-1.2.2.jar + jakarta.xml.bind-api-2.3.3.jar + jaxb-runtime-2.3.2.jar + jersey-client-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + stax-ex-1.8.1.jar + txw2-2.3.2.jar + +Eclipse Public License - Version 1.0 + javax-websocket-client-impl-9.4.48.v20220622.jar + javax-websocket-server-impl-9.4.48.v20220622.jar + jetty-http-9.4.50.v20221201.jar + jetty-io-9.4.50.v20221201.jar + jetty-security-9.4.50.v20221201.jar + jetty-server-9.4.50.v20221201.jar + jetty-servlet-9.4.50.v20221201.jar + jetty-util-9.4.50.v20221201.jar + jetty-util-ajax-9.4.50.v20221201.jar + jetty-webapp-9.4.50.v20221201.jar + jetty-xml-9.4.50.v20221201.jar + websocket-api-9.4.48.v20220622.jar + websocket-client-9.4.48.v20220622.jar + websocket-common-9.4.48.v20220622.jar + websocket-server-9.4.48.v20220622.jar + websocket-servlet-9.4.48.v20220622.jar + +Eclipse Public License - v 1.0 + eclipse-collections-11.1.0.jar + eclipse-collections-api-11.1.0.jar + junit-4.13.2.jar + +Eclipse Public License - v 2.0 + hk2-api-2.6.1.jar + hk2-locator-2.6.1.jar + hk2-utils-2.6.1.jar + jakarta.annotation-api-1.3.5.jar + jakarta.inject-2.6.1.jar + jakarta.ws.rs-api-2.1.6.jar + jersey-client-2.34.jar + jersey-common-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + jersey-server-2.34.jar + junit-jupiter-5.9.2.jar + junit-jupiter-api-5.9.2.jar + junit-jupiter-engine-5.9.2.jar + junit-jupiter-params-5.9.2.jar + junit-platform-commons-1.9.2.jar + junit-platform-engine-1.9.2.jar + junit-platform-launcher-1.9.2.jar + junit-platform-testkit-1.9.2.jar + osgi-resource-locator-1.0.3.jar + +GNU General Public License (GPL), version 2, with the Classpath exception + jnr-posix-3.0.44.jar + +GNU Lesser General Public License Version 2.1 + jnr-posix-3.0.44.jar + +GPL2 w/ CPE + jersey-client-1.19.4.jar + jersey-core-1.19.4.jar + jersey-guice-1.19.4.jar + jersey-json-1.20.jar + jersey-server-1.19.4.jar + jersey-servlet-1.19.4.jar + +GPL2 w/ CPE + hk2-api-2.6.1.jar + hk2-locator-2.6.1.jar + hk2-utils-2.6.1.jar + jakarta.annotation-api-1.3.5.jar + jakarta.inject-2.6.1.jar + jakarta.ws.rs-api-2.1.6.jar + jersey-client-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + osgi-resource-locator-1.0.3.jar + +GPL2 w/ CPE + jaxb-api-2.2.11.jar + jaxb-impl-2.2.3-1.jar + +LGPL 2.1 + javassist-3.25.0-GA.jar + +LGPL-2.1-or-later + jna-5.13.0.jar + +MIT + animal-sniffer-annotations-1.17.jar + bcpkix-jdk15on-1.70.jar + bcprov-jdk15on-1.70.jar + bcutil-jdk15on-1.70.jar + cassandra-1.17.6.jar + checker-qual-2.5.2.jar + checker-qual-3.12.0.jar + couchbase-1.17.6.jar + database-commons-1.17.6.jar + duct-tape-1.0.8.jar + elasticsearch-1.17.6.jar + jdbc-1.17.6.jar + jersey-client-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + jnr-x86asm-1.0.2.jar + localstack-1.17.6.jar + mockito-core-5.2.0.jar + mssql-jdbc-6.2.1.jre7.jar + mysql-1.17.6.jar + neo4j-1.17.6.jar + postgresql-1.17.6.jar + reactive-streams-1.0.4.jar + slf4j-api-1.7.36.jar + slf4j-api-2.0.7.jar + slf4j-nop-2.0.7.jar + slf4j-simple-1.7.36.jar + testcontainers-1.17.6.jar + +MPL 1.1 + javassist-3.25.0-GA.jar + +MPL-2.0 + kiama_2.13-2.5.0.jar + +Modified BSD + jersey-client-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + jersey-server-2.34.jar + +Public Domain, per Creative Commons CC0 + HdrHistogram-2.1.9.jar + aopalliance-1.0.jar + jersey-client-2.34.jar + jersey-common-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + +The GNU General Public License (GPL), Version 2, With Classpath Exception + jersey-common-2.34.jar + jersey-server-2.34.jar + +The Go license + re2j-1.1.jar + +W3C license + jersey-client-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar + +jQuery license + jersey-client-2.34.jar + jersey-container-servlet-2.34.jar + jersey-container-servlet-core-2.34.jar + jersey-hk2-2.34.jar diff --git a/build.gradle b/build.gradle index 501b145de8..115eb7b3ad 100644 --- a/build.gradle +++ b/build.gradle @@ -126,7 +126,11 @@ subprojects { } +apply from: "licenses-3rdparties.gradle" +apply from: "licenses-source-header.gradle" + ext { + publicDir = "${project.rootDir}" neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : "5.8.0" testContainersVersion = '1.17.6' } diff --git a/common/build.gradle b/common/build.gradle index a90ecb1cc9..dfa2a05f51 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -34,11 +34,6 @@ dependencies { exclude group: 'org.apache.hive', module: 'hive-service' } - def withoutJacksons = { - exclude group: 'com.fasterxml.jackson.core', module: 'jackson-annotations' - exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind' - } - // These will be dependencies packaged with the .jar api group: 'com.jayway.jsonpath', name: 'json-path', version: '2.8.0' api group: 'org.hdrhistogram', name: 'HdrHistogram', version: '2.1.9' @@ -60,6 +55,8 @@ dependencies { compileOnly group: 'org.neo4j', name: 'neo4j', version: neo4jVersionEffective compileOnly group: 'org.apache.commons', name: 'commons-configuration2', version: '2.9.0' compileOnly group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.12.425' + // If updated check if the transitive dependency to javax.servlet.jsp:jsp-api:2.1 has also updated + // and remove the manual licensing check for it in licenses-3rdparties.gradle compileOnly group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.3.5', withoutServers compileOnly group: 'com.google.cloud', name: 'google-cloud-storage', version: '2.6.2' diff --git a/common/src/main/java/apoc/ApocConfig.java b/common/src/main/java/apoc/ApocConfig.java index 2f6067311b..906805b94c 100644 --- a/common/src/main/java/apoc/ApocConfig.java +++ b/common/src/main/java/apoc/ApocConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import apoc.export.util.ExportConfig; diff --git a/common/src/main/java/apoc/ApocConfigExtensionFactory.java b/common/src/main/java/apoc/ApocConfigExtensionFactory.java index 4dd02fe0d1..b2797a9419 100644 --- a/common/src/main/java/apoc/ApocConfigExtensionFactory.java +++ b/common/src/main/java/apoc/ApocConfigExtensionFactory.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import org.neo4j.annotations.service.ServiceProvider; diff --git a/common/src/main/java/apoc/ApocExtensionFactory.java b/common/src/main/java/apoc/ApocExtensionFactory.java index 937a6905e9..4359ef4cc0 100644 --- a/common/src/main/java/apoc/ApocExtensionFactory.java +++ b/common/src/main/java/apoc/ApocExtensionFactory.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import org.neo4j.annotations.service.ServiceProvider; diff --git a/common/src/main/java/apoc/ApocGlobalComponents.java b/common/src/main/java/apoc/ApocGlobalComponents.java index 7d82ea2fc5..3035ab83ba 100644 --- a/common/src/main/java/apoc/ApocGlobalComponents.java +++ b/common/src/main/java/apoc/ApocGlobalComponents.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import org.neo4j.annotations.service.Service; diff --git a/common/src/main/java/apoc/PoolExtensionFactory.java b/common/src/main/java/apoc/PoolExtensionFactory.java index 317a2e15c0..09e8b0aa8b 100644 --- a/common/src/main/java/apoc/PoolExtensionFactory.java +++ b/common/src/main/java/apoc/PoolExtensionFactory.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import org.neo4j.annotations.service.ServiceProvider; diff --git a/common/src/main/java/apoc/Pools.java b/common/src/main/java/apoc/Pools.java index f745349b4d..164c689600 100644 --- a/common/src/main/java/apoc/Pools.java +++ b/common/src/main/java/apoc/Pools.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import apoc.periodic.PeriodicUtils; diff --git a/common/src/main/java/apoc/RegisterComponentFactory.java b/common/src/main/java/apoc/RegisterComponentFactory.java index cec1a9b574..29bfdacb06 100644 --- a/common/src/main/java/apoc/RegisterComponentFactory.java +++ b/common/src/main/java/apoc/RegisterComponentFactory.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import java.util.Map; diff --git a/common/src/main/java/apoc/SystemLabels.java b/common/src/main/java/apoc/SystemLabels.java index 25346b5447..9e38daa879 100644 --- a/common/src/main/java/apoc/SystemLabels.java +++ b/common/src/main/java/apoc/SystemLabels.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import org.neo4j.graphdb.Label; diff --git a/common/src/main/java/apoc/SystemPropertyKeys.java b/common/src/main/java/apoc/SystemPropertyKeys.java index 14ff53d121..74858faea9 100644 --- a/common/src/main/java/apoc/SystemPropertyKeys.java +++ b/common/src/main/java/apoc/SystemPropertyKeys.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; public enum SystemPropertyKeys { diff --git a/common/src/main/java/apoc/algo/PathFindingUtils.java b/common/src/main/java/apoc/algo/PathFindingUtils.java index 7e75cf954b..1aa96d6be8 100644 --- a/common/src/main/java/apoc/algo/PathFindingUtils.java +++ b/common/src/main/java/apoc/algo/PathFindingUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.algo; import apoc.path.RelationshipTypeAndDirections; diff --git a/common/src/main/java/apoc/coll/SetBackedList.java b/common/src/main/java/apoc/coll/SetBackedList.java index 022eb659f2..6b45563081 100644 --- a/common/src/main/java/apoc/coll/SetBackedList.java +++ b/common/src/main/java/apoc/coll/SetBackedList.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.coll; import java.util.*; diff --git a/common/src/main/java/apoc/convert/ConvertUtils.java b/common/src/main/java/apoc/convert/ConvertUtils.java index 53f08f914b..6dda35de4f 100644 --- a/common/src/main/java/apoc/convert/ConvertUtils.java +++ b/common/src/main/java/apoc/convert/ConvertUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.convert; import apoc.util.collection.Iterables; diff --git a/common/src/main/java/apoc/cypher/CypherUtils.java b/common/src/main/java/apoc/cypher/CypherUtils.java index 7cbbae669f..178f98277f 100644 --- a/common/src/main/java/apoc/cypher/CypherUtils.java +++ b/common/src/main/java/apoc/cypher/CypherUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.cypher; import apoc.result.MapResult; diff --git a/common/src/main/java/apoc/date/DateUtils.java b/common/src/main/java/apoc/date/DateUtils.java index 942842c551..6d5593d893 100644 --- a/common/src/main/java/apoc/date/DateUtils.java +++ b/common/src/main/java/apoc/date/DateUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.date; import java.util.concurrent.TimeUnit; diff --git a/common/src/main/java/apoc/export/cypher/ExportFileManager.java b/common/src/main/java/apoc/export/cypher/ExportFileManager.java index 3aed8e1a3f..adb5d0776b 100644 --- a/common/src/main/java/apoc/export/cypher/ExportFileManager.java +++ b/common/src/main/java/apoc/export/cypher/ExportFileManager.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher; import java.io.PrintWriter; diff --git a/common/src/main/java/apoc/export/cypher/FileManagerFactory.java b/common/src/main/java/apoc/export/cypher/FileManagerFactory.java index d5670049f4..8c937227fb 100644 --- a/common/src/main/java/apoc/export/cypher/FileManagerFactory.java +++ b/common/src/main/java/apoc/export/cypher/FileManagerFactory.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher; import java.io.OutputStream; diff --git a/common/src/main/java/apoc/export/cypher/formatter/AbstractCypherFormatter.java b/common/src/main/java/apoc/export/cypher/formatter/AbstractCypherFormatter.java index e16054ab8b..21a19e1026 100644 --- a/common/src/main/java/apoc/export/cypher/formatter/AbstractCypherFormatter.java +++ b/common/src/main/java/apoc/export/cypher/formatter/AbstractCypherFormatter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher.formatter; import apoc.export.util.ExportConfig; diff --git a/common/src/main/java/apoc/export/cypher/formatter/AddStructureCypherFormatter.java b/common/src/main/java/apoc/export/cypher/formatter/AddStructureCypherFormatter.java index cd3810d826..87dda3923e 100644 --- a/common/src/main/java/apoc/export/cypher/formatter/AddStructureCypherFormatter.java +++ b/common/src/main/java/apoc/export/cypher/formatter/AddStructureCypherFormatter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher.formatter; import apoc.export.util.ExportConfig; diff --git a/common/src/main/java/apoc/export/cypher/formatter/CreateCypherFormatter.java b/common/src/main/java/apoc/export/cypher/formatter/CreateCypherFormatter.java index c9873a02c7..bdccac4bb7 100644 --- a/common/src/main/java/apoc/export/cypher/formatter/CreateCypherFormatter.java +++ b/common/src/main/java/apoc/export/cypher/formatter/CreateCypherFormatter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher.formatter; import apoc.export.util.ExportConfig; diff --git a/common/src/main/java/apoc/export/cypher/formatter/CypherFormat.java b/common/src/main/java/apoc/export/cypher/formatter/CypherFormat.java index 1b66e4a0ff..5fd6ff6197 100644 --- a/common/src/main/java/apoc/export/cypher/formatter/CypherFormat.java +++ b/common/src/main/java/apoc/export/cypher/formatter/CypherFormat.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher.formatter; /** diff --git a/common/src/main/java/apoc/export/cypher/formatter/CypherFormatter.java b/common/src/main/java/apoc/export/cypher/formatter/CypherFormatter.java index 91412e9b44..8504744cb4 100644 --- a/common/src/main/java/apoc/export/cypher/formatter/CypherFormatter.java +++ b/common/src/main/java/apoc/export/cypher/formatter/CypherFormatter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher.formatter; import apoc.export.util.ExportConfig; diff --git a/common/src/main/java/apoc/export/cypher/formatter/CypherFormatterUtils.java b/common/src/main/java/apoc/export/cypher/formatter/CypherFormatterUtils.java index 0437593f7b..0fb71caca6 100644 --- a/common/src/main/java/apoc/export/cypher/formatter/CypherFormatterUtils.java +++ b/common/src/main/java/apoc/export/cypher/formatter/CypherFormatterUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher.formatter; import apoc.export.util.FormatUtils; diff --git a/common/src/main/java/apoc/export/cypher/formatter/UpdateAllCypherFormatter.java b/common/src/main/java/apoc/export/cypher/formatter/UpdateAllCypherFormatter.java index 2a6ca56b9c..eeacd80abd 100644 --- a/common/src/main/java/apoc/export/cypher/formatter/UpdateAllCypherFormatter.java +++ b/common/src/main/java/apoc/export/cypher/formatter/UpdateAllCypherFormatter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher.formatter; import apoc.export.util.ExportConfig; diff --git a/common/src/main/java/apoc/export/cypher/formatter/UpdateStructureCypherFormatter.java b/common/src/main/java/apoc/export/cypher/formatter/UpdateStructureCypherFormatter.java index 9ecc3476bb..ca6c736aa7 100644 --- a/common/src/main/java/apoc/export/cypher/formatter/UpdateStructureCypherFormatter.java +++ b/common/src/main/java/apoc/export/cypher/formatter/UpdateStructureCypherFormatter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher.formatter; import apoc.export.util.ExportConfig; diff --git a/common/src/main/java/apoc/export/util/BatchTransaction.java b/common/src/main/java/apoc/export/util/BatchTransaction.java index 381546ba14..cd4e2258de 100644 --- a/common/src/main/java/apoc/export/util/BatchTransaction.java +++ b/common/src/main/java/apoc/export/util/BatchTransaction.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import org.neo4j.graphdb.GraphDatabaseService; diff --git a/common/src/main/java/apoc/export/util/BulkImportUtil.java b/common/src/main/java/apoc/export/util/BulkImportUtil.java index bb2317f525..002cd6437e 100644 --- a/common/src/main/java/apoc/export/util/BulkImportUtil.java +++ b/common/src/main/java/apoc/export/util/BulkImportUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import org.neo4j.values.storable.DurationValue; diff --git a/common/src/main/java/apoc/export/util/CountingInputStream.java b/common/src/main/java/apoc/export/util/CountingInputStream.java index 2b2d445d5c..af74b81138 100644 --- a/common/src/main/java/apoc/export/util/CountingInputStream.java +++ b/common/src/main/java/apoc/export/util/CountingInputStream.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import org.apache.commons.compress.utils.SeekableInMemoryByteChannel; diff --git a/common/src/main/java/apoc/export/util/CountingReader.java b/common/src/main/java/apoc/export/util/CountingReader.java index e89335ed25..16aaad76da 100644 --- a/common/src/main/java/apoc/export/util/CountingReader.java +++ b/common/src/main/java/apoc/export/util/CountingReader.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import java.io.*; diff --git a/common/src/main/java/apoc/export/util/DurationValueSerializer.java b/common/src/main/java/apoc/export/util/DurationValueSerializer.java index 88e822a1cb..77ea644868 100644 --- a/common/src/main/java/apoc/export/util/DurationValueSerializer.java +++ b/common/src/main/java/apoc/export/util/DurationValueSerializer.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import com.fasterxml.jackson.core.JsonGenerator; diff --git a/common/src/main/java/apoc/export/util/ExportConfig.java b/common/src/main/java/apoc/export/util/ExportConfig.java index de185420bf..0ac046e3bc 100644 --- a/common/src/main/java/apoc/export/util/ExportConfig.java +++ b/common/src/main/java/apoc/export/util/ExportConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import apoc.export.cypher.formatter.CypherFormat; diff --git a/common/src/main/java/apoc/export/util/ExportFormat.java b/common/src/main/java/apoc/export/util/ExportFormat.java index 01ea10b94d..549743ae76 100644 --- a/common/src/main/java/apoc/export/util/ExportFormat.java +++ b/common/src/main/java/apoc/export/util/ExportFormat.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import static java.lang.String.format; diff --git a/common/src/main/java/apoc/export/util/ExportUtils.java b/common/src/main/java/apoc/export/util/ExportUtils.java index ba1fbdffa3..848f889f2e 100644 --- a/common/src/main/java/apoc/export/util/ExportUtils.java +++ b/common/src/main/java/apoc/export/util/ExportUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import apoc.export.cypher.ExportFileManager; diff --git a/common/src/main/java/apoc/export/util/FormatUtils.java b/common/src/main/java/apoc/export/util/FormatUtils.java index 9e434779bd..6896d98246 100644 --- a/common/src/main/java/apoc/export/util/FormatUtils.java +++ b/common/src/main/java/apoc/export/util/FormatUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import apoc.util.JsonUtil; diff --git a/common/src/main/java/apoc/export/util/MetaInformation.java b/common/src/main/java/apoc/export/util/MetaInformation.java index 789e6e8b5f..00a0ce7501 100644 --- a/common/src/main/java/apoc/export/util/MetaInformation.java +++ b/common/src/main/java/apoc/export/util/MetaInformation.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import apoc.meta.Types; diff --git a/common/src/main/java/apoc/export/util/NodesAndRelsSubGraph.java b/common/src/main/java/apoc/export/util/NodesAndRelsSubGraph.java index b5dc091f29..5a922a3bf5 100644 --- a/common/src/main/java/apoc/export/util/NodesAndRelsSubGraph.java +++ b/common/src/main/java/apoc/export/util/NodesAndRelsSubGraph.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import apoc.util.collection.Iterables; diff --git a/common/src/main/java/apoc/export/util/PointSerializer.java b/common/src/main/java/apoc/export/util/PointSerializer.java index 2231f84487..bd1651de4d 100644 --- a/common/src/main/java/apoc/export/util/PointSerializer.java +++ b/common/src/main/java/apoc/export/util/PointSerializer.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import com.fasterxml.jackson.core.JsonGenerator; diff --git a/common/src/main/java/apoc/export/util/ProgressReporter.java b/common/src/main/java/apoc/export/util/ProgressReporter.java index 07bc2a4722..1354ae536a 100644 --- a/common/src/main/java/apoc/export/util/ProgressReporter.java +++ b/common/src/main/java/apoc/export/util/ProgressReporter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import apoc.result.ProgressInfo; diff --git a/common/src/main/java/apoc/export/util/Reporter.java b/common/src/main/java/apoc/export/util/Reporter.java index cba0e11f64..fcad9f4f32 100644 --- a/common/src/main/java/apoc/export/util/Reporter.java +++ b/common/src/main/java/apoc/export/util/Reporter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import apoc.result.ProgressInfo; diff --git a/common/src/main/java/apoc/export/util/SizeCounter.java b/common/src/main/java/apoc/export/util/SizeCounter.java index 9a9fb38809..412272a23f 100644 --- a/common/src/main/java/apoc/export/util/SizeCounter.java +++ b/common/src/main/java/apoc/export/util/SizeCounter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; /** diff --git a/common/src/main/java/apoc/export/util/TemporalSerializer.java b/common/src/main/java/apoc/export/util/TemporalSerializer.java index 5fdb6c4278..9a9d0f9c58 100644 --- a/common/src/main/java/apoc/export/util/TemporalSerializer.java +++ b/common/src/main/java/apoc/export/util/TemporalSerializer.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import com.fasterxml.jackson.core.JsonGenerator; diff --git a/common/src/main/java/apoc/generate/config/InvalidConfigException.java b/common/src/main/java/apoc/generate/config/InvalidConfigException.java index 63abea6fd3..4507024f41 100644 --- a/common/src/main/java/apoc/generate/config/InvalidConfigException.java +++ b/common/src/main/java/apoc/generate/config/InvalidConfigException.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.generate.config; /** diff --git a/common/src/main/java/apoc/gephi/GephiFormatUtils.java b/common/src/main/java/apoc/gephi/GephiFormatUtils.java index cfca1d9f5e..40729f0e12 100644 --- a/common/src/main/java/apoc/gephi/GephiFormatUtils.java +++ b/common/src/main/java/apoc/gephi/GephiFormatUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.gephi; import org.neo4j.graphdb.Node; diff --git a/common/src/main/java/apoc/get/Get.java b/common/src/main/java/apoc/get/Get.java index d32730f8d4..155d4f04a4 100644 --- a/common/src/main/java/apoc/get/Get.java +++ b/common/src/main/java/apoc/get/Get.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.get; import apoc.result.NodeResult; diff --git a/common/src/main/java/apoc/graph/GraphsUtils.java b/common/src/main/java/apoc/graph/GraphsUtils.java index 3ad0ff1fd6..7946aaf13b 100644 --- a/common/src/main/java/apoc/graph/GraphsUtils.java +++ b/common/src/main/java/apoc/graph/GraphsUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.graph; import apoc.util.collection.Iterables; diff --git a/common/src/main/java/apoc/graph/document/builder/DocumentToGraph.java b/common/src/main/java/apoc/graph/document/builder/DocumentToGraph.java index 47256e4031..2fbf0338fe 100644 --- a/common/src/main/java/apoc/graph/document/builder/DocumentToGraph.java +++ b/common/src/main/java/apoc/graph/document/builder/DocumentToGraph.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.graph.document.builder; import apoc.graph.util.GraphsConfig; diff --git a/common/src/main/java/apoc/graph/document/builder/LabelBuilder.java b/common/src/main/java/apoc/graph/document/builder/LabelBuilder.java index 57b1edbc14..942183cd76 100644 --- a/common/src/main/java/apoc/graph/document/builder/LabelBuilder.java +++ b/common/src/main/java/apoc/graph/document/builder/LabelBuilder.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.graph.document.builder; import apoc.graph.util.GraphsConfig; diff --git a/common/src/main/java/apoc/graph/document/builder/RelationshipBuilder.java b/common/src/main/java/apoc/graph/document/builder/RelationshipBuilder.java index 365952d7dc..73205a0d95 100644 --- a/common/src/main/java/apoc/graph/document/builder/RelationshipBuilder.java +++ b/common/src/main/java/apoc/graph/document/builder/RelationshipBuilder.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.graph.document.builder; import apoc.graph.util.GraphsConfig; diff --git a/common/src/main/java/apoc/graph/util/GraphsConfig.java b/common/src/main/java/apoc/graph/util/GraphsConfig.java index 414c76d4c2..43cc009fc3 100644 --- a/common/src/main/java/apoc/graph/util/GraphsConfig.java +++ b/common/src/main/java/apoc/graph/util/GraphsConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.graph.util; import org.apache.commons.collections4.MapUtils; diff --git a/common/src/main/java/apoc/load/CSVResult.java b/common/src/main/java/apoc/load/CSVResult.java index 8c917c275c..43c058c224 100644 --- a/common/src/main/java/apoc/load/CSVResult.java +++ b/common/src/main/java/apoc/load/CSVResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import apoc.load.util.Results; diff --git a/common/src/main/java/apoc/load/LoadJsonUtils.java b/common/src/main/java/apoc/load/LoadJsonUtils.java index 8aebbc0645..158d97aade 100644 --- a/common/src/main/java/apoc/load/LoadJsonUtils.java +++ b/common/src/main/java/apoc/load/LoadJsonUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import apoc.result.MapResult; diff --git a/common/src/main/java/apoc/load/Mapping.java b/common/src/main/java/apoc/load/Mapping.java index 548320b19d..5384455ffc 100644 --- a/common/src/main/java/apoc/load/Mapping.java +++ b/common/src/main/java/apoc/load/Mapping.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import apoc.meta.Types; diff --git a/common/src/main/java/apoc/load/util/Results.java b/common/src/main/java/apoc/load/util/Results.java index 887b554fee..febc49b2e2 100644 --- a/common/src/main/java/apoc/load/util/Results.java +++ b/common/src/main/java/apoc/load/util/Results.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load.util; public enum Results { diff --git a/common/src/main/java/apoc/meta/ConstraintTracker.java b/common/src/main/java/apoc/meta/ConstraintTracker.java index 59cfa7de37..81352b4e0b 100644 --- a/common/src/main/java/apoc/meta/ConstraintTracker.java +++ b/common/src/main/java/apoc/meta/ConstraintTracker.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta; import java.util.HashMap; diff --git a/common/src/main/java/apoc/meta/MetaConfig.java b/common/src/main/java/apoc/meta/MetaConfig.java index e2d19d3b48..3fbb77d4c2 100644 --- a/common/src/main/java/apoc/meta/MetaConfig.java +++ b/common/src/main/java/apoc/meta/MetaConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta; import apoc.util.Util; diff --git a/common/src/main/java/apoc/meta/SampleMetaConfig.java b/common/src/main/java/apoc/meta/SampleMetaConfig.java index 0e9d2edb1e..4168b412bc 100644 --- a/common/src/main/java/apoc/meta/SampleMetaConfig.java +++ b/common/src/main/java/apoc/meta/SampleMetaConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta; import java.util.Collections; diff --git a/common/src/main/java/apoc/meta/Tables4LabelsProfile.java b/common/src/main/java/apoc/meta/Tables4LabelsProfile.java index 40bbecaa2b..f3586cd59b 100644 --- a/common/src/main/java/apoc/meta/Tables4LabelsProfile.java +++ b/common/src/main/java/apoc/meta/Tables4LabelsProfile.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta; import apoc.meta.tablesforlabels.PropertyContainerProfile; diff --git a/common/src/main/java/apoc/meta/Types.java b/common/src/main/java/apoc/meta/Types.java index 3a2b8bf160..2ebcb1c028 100644 --- a/common/src/main/java/apoc/meta/Types.java +++ b/common/src/main/java/apoc/meta/Types.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta; import java.time.LocalDate; diff --git a/common/src/main/java/apoc/meta/tablesforlabels/OrderedLabels.java b/common/src/main/java/apoc/meta/tablesforlabels/OrderedLabels.java index 44f4797a00..43d3b08018 100644 --- a/common/src/main/java/apoc/meta/tablesforlabels/OrderedLabels.java +++ b/common/src/main/java/apoc/meta/tablesforlabels/OrderedLabels.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta.tablesforlabels; import org.neo4j.graphdb.Label; diff --git a/common/src/main/java/apoc/meta/tablesforlabels/PropertyContainerProfile.java b/common/src/main/java/apoc/meta/tablesforlabels/PropertyContainerProfile.java index b3fe5edbb3..da7a4f9a31 100644 --- a/common/src/main/java/apoc/meta/tablesforlabels/PropertyContainerProfile.java +++ b/common/src/main/java/apoc/meta/tablesforlabels/PropertyContainerProfile.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta.tablesforlabels; import apoc.meta.ConstraintTracker; diff --git a/common/src/main/java/apoc/meta/tablesforlabels/PropertyTracker.java b/common/src/main/java/apoc/meta/tablesforlabels/PropertyTracker.java index d6ece744d9..82a68aaf6a 100644 --- a/common/src/main/java/apoc/meta/tablesforlabels/PropertyTracker.java +++ b/common/src/main/java/apoc/meta/tablesforlabels/PropertyTracker.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta.tablesforlabels; import java.util.*; diff --git a/common/src/main/java/apoc/path/RelationshipTypeAndDirections.java b/common/src/main/java/apoc/path/RelationshipTypeAndDirections.java index b8bd32222b..1264f847cf 100644 --- a/common/src/main/java/apoc/path/RelationshipTypeAndDirections.java +++ b/common/src/main/java/apoc/path/RelationshipTypeAndDirections.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import org.apache.commons.lang3.tuple.Pair; diff --git a/common/src/main/java/apoc/periodic/BatchAndTotalCollector.java b/common/src/main/java/apoc/periodic/BatchAndTotalCollector.java index ff02109cf9..1610fcafa6 100644 --- a/common/src/main/java/apoc/periodic/BatchAndTotalCollector.java +++ b/common/src/main/java/apoc/periodic/BatchAndTotalCollector.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.periodic; import apoc.util.Util; diff --git a/common/src/main/java/apoc/periodic/BatchAndTotalResult.java b/common/src/main/java/apoc/periodic/BatchAndTotalResult.java index 78bfde8e2d..7e5135c09f 100644 --- a/common/src/main/java/apoc/periodic/BatchAndTotalResult.java +++ b/common/src/main/java/apoc/periodic/BatchAndTotalResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.periodic; import apoc.util.Util; diff --git a/common/src/main/java/apoc/periodic/BatchMode.java b/common/src/main/java/apoc/periodic/BatchMode.java index 6ca8612a53..5750348a42 100644 --- a/common/src/main/java/apoc/periodic/BatchMode.java +++ b/common/src/main/java/apoc/periodic/BatchMode.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.periodic; import apoc.util.Util; diff --git a/common/src/main/java/apoc/periodic/PeriodicUtils.java b/common/src/main/java/apoc/periodic/PeriodicUtils.java index 6dffb4f8f5..ee13c5c013 100644 --- a/common/src/main/java/apoc/periodic/PeriodicUtils.java +++ b/common/src/main/java/apoc/periodic/PeriodicUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.periodic; import apoc.Pools; diff --git a/common/src/main/java/apoc/result/AssertSchemaResult.java b/common/src/main/java/apoc/result/AssertSchemaResult.java index 6b466795ea..1ac078a05f 100644 --- a/common/src/main/java/apoc/result/AssertSchemaResult.java +++ b/common/src/main/java/apoc/result/AssertSchemaResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import java.util.Arrays; diff --git a/common/src/main/java/apoc/result/ByteArrayResult.java b/common/src/main/java/apoc/result/ByteArrayResult.java index f7b9d7ba75..ad371ae460 100644 --- a/common/src/main/java/apoc/result/ByteArrayResult.java +++ b/common/src/main/java/apoc/result/ByteArrayResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; public class ByteArrayResult { diff --git a/common/src/main/java/apoc/result/DistancePathResult.java b/common/src/main/java/apoc/result/DistancePathResult.java index 756ad1e694..61fd73a805 100644 --- a/common/src/main/java/apoc/result/DistancePathResult.java +++ b/common/src/main/java/apoc/result/DistancePathResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Path; diff --git a/common/src/main/java/apoc/result/GraphResult.java b/common/src/main/java/apoc/result/GraphResult.java index c290a0ec37..e0be5a2d2c 100644 --- a/common/src/main/java/apoc/result/GraphResult.java +++ b/common/src/main/java/apoc/result/GraphResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Node; diff --git a/common/src/main/java/apoc/result/IndexConstraintNodeInfo.java b/common/src/main/java/apoc/result/IndexConstraintNodeInfo.java index f3a251a28a..925c357b05 100644 --- a/common/src/main/java/apoc/result/IndexConstraintNodeInfo.java +++ b/common/src/main/java/apoc/result/IndexConstraintNodeInfo.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import java.util.List; diff --git a/common/src/main/java/apoc/result/IndexConstraintRelationshipInfo.java b/common/src/main/java/apoc/result/IndexConstraintRelationshipInfo.java index 68559d5868..79eeb6babd 100644 --- a/common/src/main/java/apoc/result/IndexConstraintRelationshipInfo.java +++ b/common/src/main/java/apoc/result/IndexConstraintRelationshipInfo.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import java.util.List; diff --git a/common/src/main/java/apoc/result/ListResult.java b/common/src/main/java/apoc/result/ListResult.java index d217990d0e..4a46ab7626 100644 --- a/common/src/main/java/apoc/result/ListResult.java +++ b/common/src/main/java/apoc/result/ListResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import java.util.List; diff --git a/common/src/main/java/apoc/result/LongResult.java b/common/src/main/java/apoc/result/LongResult.java index 65bf8c8183..54fe3034b9 100644 --- a/common/src/main/java/apoc/result/LongResult.java +++ b/common/src/main/java/apoc/result/LongResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; /** diff --git a/common/src/main/java/apoc/result/MapResult.java b/common/src/main/java/apoc/result/MapResult.java index d7f6b3cd79..152ac6ff39 100644 --- a/common/src/main/java/apoc/result/MapResult.java +++ b/common/src/main/java/apoc/result/MapResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import java.util.Collections; diff --git a/common/src/main/java/apoc/result/NodeListResult.java b/common/src/main/java/apoc/result/NodeListResult.java index 60b174c335..e37694848c 100644 --- a/common/src/main/java/apoc/result/NodeListResult.java +++ b/common/src/main/java/apoc/result/NodeListResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Node; diff --git a/common/src/main/java/apoc/result/NodeResult.java b/common/src/main/java/apoc/result/NodeResult.java index 6c3f27e1d4..2b7c5104fb 100644 --- a/common/src/main/java/apoc/result/NodeResult.java +++ b/common/src/main/java/apoc/result/NodeResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Node; diff --git a/common/src/main/java/apoc/result/NodeResultWithStats.java b/common/src/main/java/apoc/result/NodeResultWithStats.java index 84b16824b6..b56acb9e4e 100644 --- a/common/src/main/java/apoc/result/NodeResultWithStats.java +++ b/common/src/main/java/apoc/result/NodeResultWithStats.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Node; diff --git a/common/src/main/java/apoc/result/ObjectResult.java b/common/src/main/java/apoc/result/ObjectResult.java index 969212f181..3d2f32e216 100644 --- a/common/src/main/java/apoc/result/ObjectResult.java +++ b/common/src/main/java/apoc/result/ObjectResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; /** diff --git a/common/src/main/java/apoc/result/PathResult.java b/common/src/main/java/apoc/result/PathResult.java index fd6319d367..c197121a8c 100644 --- a/common/src/main/java/apoc/result/PathResult.java +++ b/common/src/main/java/apoc/result/PathResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Path; diff --git a/common/src/main/java/apoc/result/ProgressInfo.java b/common/src/main/java/apoc/result/ProgressInfo.java index dc5c699bc2..41e01b9f6c 100644 --- a/common/src/main/java/apoc/result/ProgressInfo.java +++ b/common/src/main/java/apoc/result/ProgressInfo.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import apoc.export.util.ExportConfig; diff --git a/common/src/main/java/apoc/result/RelationshipResult.java b/common/src/main/java/apoc/result/RelationshipResult.java index f04b9c6f12..d5c020bfee 100644 --- a/common/src/main/java/apoc/result/RelationshipResult.java +++ b/common/src/main/java/apoc/result/RelationshipResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Relationship; diff --git a/common/src/main/java/apoc/result/RelationshipResultWithStats.java b/common/src/main/java/apoc/result/RelationshipResultWithStats.java index 9081b1be8c..39cf7b5da3 100644 --- a/common/src/main/java/apoc/result/RelationshipResultWithStats.java +++ b/common/src/main/java/apoc/result/RelationshipResultWithStats.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Relationship; diff --git a/common/src/main/java/apoc/result/RowResult.java b/common/src/main/java/apoc/result/RowResult.java index 02f8ffdb3e..fab69ab726 100644 --- a/common/src/main/java/apoc/result/RowResult.java +++ b/common/src/main/java/apoc/result/RowResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import java.util.Map; diff --git a/common/src/main/java/apoc/result/VirtualGraph.java b/common/src/main/java/apoc/result/VirtualGraph.java index 74c998354b..c7a2a055cc 100644 --- a/common/src/main/java/apoc/result/VirtualGraph.java +++ b/common/src/main/java/apoc/result/VirtualGraph.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import apoc.util.MapUtil; diff --git a/common/src/main/java/apoc/result/VirtualNode.java b/common/src/main/java/apoc/result/VirtualNode.java index c12032c815..8399275bfb 100644 --- a/common/src/main/java/apoc/result/VirtualNode.java +++ b/common/src/main/java/apoc/result/VirtualNode.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import apoc.util.Util; diff --git a/common/src/main/java/apoc/result/VirtualPath.java b/common/src/main/java/apoc/result/VirtualPath.java index c29374f66c..86b3647631 100644 --- a/common/src/main/java/apoc/result/VirtualPath.java +++ b/common/src/main/java/apoc/result/VirtualPath.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.apache.commons.collections4.CollectionUtils; diff --git a/common/src/main/java/apoc/result/VirtualPathResult.java b/common/src/main/java/apoc/result/VirtualPathResult.java index bf618e49ee..d5bd421593 100644 --- a/common/src/main/java/apoc/result/VirtualPathResult.java +++ b/common/src/main/java/apoc/result/VirtualPathResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Node; diff --git a/common/src/main/java/apoc/result/VirtualRelationship.java b/common/src/main/java/apoc/result/VirtualRelationship.java index 59e5805407..8fcbc02459 100644 --- a/common/src/main/java/apoc/result/VirtualRelationship.java +++ b/common/src/main/java/apoc/result/VirtualRelationship.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphdb.Node; diff --git a/common/src/main/java/apoc/result/WeightedPathResult.java b/common/src/main/java/apoc/result/WeightedPathResult.java index fc0af6e5da..750b933749 100644 --- a/common/src/main/java/apoc/result/WeightedPathResult.java +++ b/common/src/main/java/apoc/result/WeightedPathResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import org.neo4j.graphalgo.PathFinder; diff --git a/common/src/main/java/apoc/util/ApocUrlStreamHandlerFactory.java b/common/src/main/java/apoc/util/ApocUrlStreamHandlerFactory.java index dbb811b28d..aafb427534 100644 --- a/common/src/main/java/apoc/util/ApocUrlStreamHandlerFactory.java +++ b/common/src/main/java/apoc/util/ApocUrlStreamHandlerFactory.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.net.URLStreamHandler; diff --git a/common/src/main/java/apoc/util/ArchiveType.java b/common/src/main/java/apoc/util/ArchiveType.java index 7fd9568d00..b1901de378 100644 --- a/common/src/main/java/apoc/util/ArchiveType.java +++ b/common/src/main/java/apoc/util/ArchiveType.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.apache.commons.compress.archivers.ArchiveInputStream; diff --git a/common/src/main/java/apoc/util/ArrayBackedIterator.java b/common/src/main/java/apoc/util/ArrayBackedIterator.java index 1238e512d5..7652f029c9 100644 --- a/common/src/main/java/apoc/util/ArrayBackedIterator.java +++ b/common/src/main/java/apoc/util/ArrayBackedIterator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.lang.reflect.Array; diff --git a/common/src/main/java/apoc/util/ArrayBackedList.java b/common/src/main/java/apoc/util/ArrayBackedList.java index cc79957d3b..9ae2d15c87 100644 --- a/common/src/main/java/apoc/util/ArrayBackedList.java +++ b/common/src/main/java/apoc/util/ArrayBackedList.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.lang.reflect.Array; diff --git a/common/src/main/java/apoc/util/CompressionAlgo.java b/common/src/main/java/apoc/util/CompressionAlgo.java index 0fefd209f0..54852240d9 100644 --- a/common/src/main/java/apoc/util/CompressionAlgo.java +++ b/common/src/main/java/apoc/util/CompressionAlgo.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import apoc.export.util.CountingInputStream; diff --git a/common/src/main/java/apoc/util/CompressionConfig.java b/common/src/main/java/apoc/util/CompressionConfig.java index 9ff0562e05..80d3201b7e 100644 --- a/common/src/main/java/apoc/util/CompressionConfig.java +++ b/common/src/main/java/apoc/util/CompressionConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.nio.charset.Charset; diff --git a/common/src/main/java/apoc/util/DateFormatUtil.java b/common/src/main/java/apoc/util/DateFormatUtil.java index 1f628d06c3..c8d8b36820 100644 --- a/common/src/main/java/apoc/util/DateFormatUtil.java +++ b/common/src/main/java/apoc/util/DateFormatUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.time.format.DateTimeFormatter; diff --git a/common/src/main/java/apoc/util/DateParseUtil.java b/common/src/main/java/apoc/util/DateParseUtil.java index 4d9d68965c..6ee356864e 100644 --- a/common/src/main/java/apoc/util/DateParseUtil.java +++ b/common/src/main/java/apoc/util/DateParseUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.lang.invoke.MethodHandle; diff --git a/common/src/main/java/apoc/util/DurationFormatUtil.java b/common/src/main/java/apoc/util/DurationFormatUtil.java index 8989a5b5dd..5057a10a53 100644 --- a/common/src/main/java/apoc/util/DurationFormatUtil.java +++ b/common/src/main/java/apoc/util/DurationFormatUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.neo4j.values.storable.DurationFields; diff --git a/common/src/main/java/apoc/util/FileUtils.java b/common/src/main/java/apoc/util/FileUtils.java index d5a23cc393..31dbf75699 100644 --- a/common/src/main/java/apoc/util/FileUtils.java +++ b/common/src/main/java/apoc/util/FileUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import apoc.ApocConfig; diff --git a/common/src/main/java/apoc/util/FixedSizeStringWriter.java b/common/src/main/java/apoc/util/FixedSizeStringWriter.java index 95327d0ca4..8572d9e532 100644 --- a/common/src/main/java/apoc/util/FixedSizeStringWriter.java +++ b/common/src/main/java/apoc/util/FixedSizeStringWriter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.io.StringWriter; diff --git a/common/src/main/java/apoc/util/JsonUtil.java b/common/src/main/java/apoc/util/JsonUtil.java index 1574bc23af..1859058864 100755 --- a/common/src/main/java/apoc/util/JsonUtil.java +++ b/common/src/main/java/apoc/util/JsonUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import apoc.export.util.DurationValueSerializer; diff --git a/common/src/main/java/apoc/util/MapUtil.java b/common/src/main/java/apoc/util/MapUtil.java index ba7be4118b..f77dbeb8e3 100644 --- a/common/src/main/java/apoc/util/MapUtil.java +++ b/common/src/main/java/apoc/util/MapUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.util.Map; diff --git a/common/src/main/java/apoc/util/MissingDependencyException.java b/common/src/main/java/apoc/util/MissingDependencyException.java index 5ade5e3eab..260295bba4 100644 --- a/common/src/main/java/apoc/util/MissingDependencyException.java +++ b/common/src/main/java/apoc/util/MissingDependencyException.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; /** diff --git a/common/src/main/java/apoc/util/QueueBasedSpliterator.java b/common/src/main/java/apoc/util/QueueBasedSpliterator.java index 440378df32..a67d9038f6 100644 --- a/common/src/main/java/apoc/util/QueueBasedSpliterator.java +++ b/common/src/main/java/apoc/util/QueueBasedSpliterator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.neo4j.procedure.TerminationGuard; diff --git a/common/src/main/java/apoc/util/QueueUtil.java b/common/src/main/java/apoc/util/QueueUtil.java index 94a1443398..9fb5fc1b82 100644 --- a/common/src/main/java/apoc/util/QueueUtil.java +++ b/common/src/main/java/apoc/util/QueueUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.util.concurrent.BlockingQueue; diff --git a/common/src/main/java/apoc/util/SortedArraySet.java b/common/src/main/java/apoc/util/SortedArraySet.java index ed796b4a99..530c4c2f56 100644 --- a/common/src/main/java/apoc/util/SortedArraySet.java +++ b/common/src/main/java/apoc/util/SortedArraySet.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.lang.reflect.Array; diff --git a/common/src/main/java/apoc/util/StreamConnection.java b/common/src/main/java/apoc/util/StreamConnection.java index 61f8be86e0..45e084a67a 100644 --- a/common/src/main/java/apoc/util/StreamConnection.java +++ b/common/src/main/java/apoc/util/StreamConnection.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import apoc.export.util.CountingInputStream; diff --git a/common/src/main/java/apoc/util/SupportedProtocols.java b/common/src/main/java/apoc/util/SupportedProtocols.java index d002ff0874..0190d422f7 100644 --- a/common/src/main/java/apoc/util/SupportedProtocols.java +++ b/common/src/main/java/apoc/util/SupportedProtocols.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; public enum SupportedProtocols diff --git a/common/src/main/java/apoc/util/Util.java b/common/src/main/java/apoc/util/Util.java index c6d3bb1d79..5181e957e7 100644 --- a/common/src/main/java/apoc/util/Util.java +++ b/common/src/main/java/apoc/util/Util.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import apoc.ApocConfig; diff --git a/common/src/main/java/apoc/util/collection/AbstractResourceIterable.java b/common/src/main/java/apoc/util/collection/AbstractResourceIterable.java index ffc5d198cd..ce912035cf 100644 --- a/common/src/main/java/apoc/util/collection/AbstractResourceIterable.java +++ b/common/src/main/java/apoc/util/collection/AbstractResourceIterable.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import java.util.Arrays; diff --git a/common/src/main/java/apoc/util/collection/FilteringIterable.java b/common/src/main/java/apoc/util/collection/FilteringIterable.java index 7007070b0c..887f6dae3d 100644 --- a/common/src/main/java/apoc/util/collection/FilteringIterable.java +++ b/common/src/main/java/apoc/util/collection/FilteringIterable.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import java.util.Iterator; diff --git a/common/src/main/java/apoc/util/collection/FilteringIterator.java b/common/src/main/java/apoc/util/collection/FilteringIterator.java index 32f2526399..73dfe9b925 100644 --- a/common/src/main/java/apoc/util/collection/FilteringIterator.java +++ b/common/src/main/java/apoc/util/collection/FilteringIterator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import java.util.Iterator; diff --git a/common/src/main/java/apoc/util/collection/Iterables.java b/common/src/main/java/apoc/util/collection/Iterables.java index aef6738f47..b36607a973 100644 --- a/common/src/main/java/apoc/util/collection/Iterables.java +++ b/common/src/main/java/apoc/util/collection/Iterables.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import java.lang.reflect.Array; diff --git a/common/src/main/java/apoc/util/collection/Iterators.java b/common/src/main/java/apoc/util/collection/Iterators.java index 8b8260fcc6..e8f98623ed 100644 --- a/common/src/main/java/apoc/util/collection/Iterators.java +++ b/common/src/main/java/apoc/util/collection/Iterators.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import java.util.ArrayList; diff --git a/common/src/main/java/apoc/util/collection/NestingResourceIterator.java b/common/src/main/java/apoc/util/collection/NestingResourceIterator.java index c692d4cfbf..77390e241e 100644 --- a/common/src/main/java/apoc/util/collection/NestingResourceIterator.java +++ b/common/src/main/java/apoc/util/collection/NestingResourceIterator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; diff --git a/common/src/main/java/apoc/util/collection/PrefetchingIterator.java b/common/src/main/java/apoc/util/collection/PrefetchingIterator.java index 475229a7a5..8891e90dc7 100644 --- a/common/src/main/java/apoc/util/collection/PrefetchingIterator.java +++ b/common/src/main/java/apoc/util/collection/PrefetchingIterator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import java.util.Iterator; diff --git a/common/src/main/java/apoc/util/collection/PrefetchingResourceIterator.java b/common/src/main/java/apoc/util/collection/PrefetchingResourceIterator.java index 90e0d62271..6dfe602871 100644 --- a/common/src/main/java/apoc/util/collection/PrefetchingResourceIterator.java +++ b/common/src/main/java/apoc/util/collection/PrefetchingResourceIterator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import org.neo4j.graphdb.ResourceIterator; diff --git a/common/src/main/java/apoc/util/collection/ResourceClosingIterator.java b/common/src/main/java/apoc/util/collection/ResourceClosingIterator.java index 1f036be199..0026fa9d37 100644 --- a/common/src/main/java/apoc/util/collection/ResourceClosingIterator.java +++ b/common/src/main/java/apoc/util/collection/ResourceClosingIterator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; diff --git a/common/src/main/java/apoc/util/collection/ResourceIteratorCloseFailedException.java b/common/src/main/java/apoc/util/collection/ResourceIteratorCloseFailedException.java index 90072e74a6..5106a716a2 100644 --- a/common/src/main/java/apoc/util/collection/ResourceIteratorCloseFailedException.java +++ b/common/src/main/java/apoc/util/collection/ResourceIteratorCloseFailedException.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import org.neo4j.graphdb.Resource; diff --git a/common/src/main/java/apoc/util/collection/WrappingResourceIterator.java b/common/src/main/java/apoc/util/collection/WrappingResourceIterator.java index e6ca701e14..c3865461cf 100644 --- a/common/src/main/java/apoc/util/collection/WrappingResourceIterator.java +++ b/common/src/main/java/apoc/util/collection/WrappingResourceIterator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import java.util.Iterator; diff --git a/common/src/main/java/apoc/util/google/cloud/GCStorageURLConnection.java b/common/src/main/java/apoc/util/google/cloud/GCStorageURLConnection.java index a841ab789d..e1127d01f4 100644 --- a/common/src/main/java/apoc/util/google/cloud/GCStorageURLConnection.java +++ b/common/src/main/java/apoc/util/google/cloud/GCStorageURLConnection.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.google.cloud; import com.google.cloud.storage.Blob; diff --git a/common/src/main/java/apoc/util/google/cloud/GCStorageURLStreamHandler.java b/common/src/main/java/apoc/util/google/cloud/GCStorageURLStreamHandler.java index e1d053912a..9d8ecbe439 100644 --- a/common/src/main/java/apoc/util/google/cloud/GCStorageURLStreamHandler.java +++ b/common/src/main/java/apoc/util/google/cloud/GCStorageURLStreamHandler.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.google.cloud; import java.net.URL; diff --git a/common/src/main/java/apoc/util/google/cloud/GCStorageURLStreamHandlerFactory.java b/common/src/main/java/apoc/util/google/cloud/GCStorageURLStreamHandlerFactory.java index 15693cc874..240cc33016 100644 --- a/common/src/main/java/apoc/util/google/cloud/GCStorageURLStreamHandlerFactory.java +++ b/common/src/main/java/apoc/util/google/cloud/GCStorageURLStreamHandlerFactory.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.google.cloud; import apoc.util.SupportedProtocols; diff --git a/common/src/main/java/apoc/util/hdfs/HDFSUtils.java b/common/src/main/java/apoc/util/hdfs/HDFSUtils.java index fc091ccbc9..a592feb78f 100644 --- a/common/src/main/java/apoc/util/hdfs/HDFSUtils.java +++ b/common/src/main/java/apoc/util/hdfs/HDFSUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.hdfs; import apoc.util.StreamConnection; diff --git a/common/src/main/java/apoc/util/kernel/MultiThreadedGlobalGraphOperations.java b/common/src/main/java/apoc/util/kernel/MultiThreadedGlobalGraphOperations.java index 54e2cac07f..db62138049 100644 --- a/common/src/main/java/apoc/util/kernel/MultiThreadedGlobalGraphOperations.java +++ b/common/src/main/java/apoc/util/kernel/MultiThreadedGlobalGraphOperations.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.kernel; import java.util.concurrent.Callable; diff --git a/common/src/main/java/apoc/util/s3/S3Aws.java b/common/src/main/java/apoc/util/s3/S3Aws.java index 8bd622d726..2000bb5fdb 100644 --- a/common/src/main/java/apoc/util/s3/S3Aws.java +++ b/common/src/main/java/apoc/util/s3/S3Aws.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import apoc.util.StreamConnection; diff --git a/common/src/main/java/apoc/util/s3/S3OutputStream.java b/common/src/main/java/apoc/util/s3/S3OutputStream.java index 67eaba3bb1..8067010d91 100644 --- a/common/src/main/java/apoc/util/s3/S3OutputStream.java +++ b/common/src/main/java/apoc/util/s3/S3OutputStream.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import com.amazonaws.services.s3.AmazonS3; diff --git a/common/src/main/java/apoc/util/s3/S3Params.java b/common/src/main/java/apoc/util/s3/S3Params.java index c7ed8b687d..4dcd40a4b0 100644 --- a/common/src/main/java/apoc/util/s3/S3Params.java +++ b/common/src/main/java/apoc/util/s3/S3Params.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; public class S3Params { diff --git a/common/src/main/java/apoc/util/s3/S3ParamsExtractor.java b/common/src/main/java/apoc/util/s3/S3ParamsExtractor.java index 5b87a03580..73d2a0c0e5 100644 --- a/common/src/main/java/apoc/util/s3/S3ParamsExtractor.java +++ b/common/src/main/java/apoc/util/s3/S3ParamsExtractor.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import apoc.util.Util; diff --git a/common/src/main/java/apoc/util/s3/S3URLConnection.java b/common/src/main/java/apoc/util/s3/S3URLConnection.java index 66e950e2e7..dfb81ab837 100644 --- a/common/src/main/java/apoc/util/s3/S3URLConnection.java +++ b/common/src/main/java/apoc/util/s3/S3URLConnection.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import apoc.util.StreamConnection; diff --git a/common/src/main/java/apoc/util/s3/S3UploadUtils.java b/common/src/main/java/apoc/util/s3/S3UploadUtils.java index aada850470..163e960883 100644 --- a/common/src/main/java/apoc/util/s3/S3UploadUtils.java +++ b/common/src/main/java/apoc/util/s3/S3UploadUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import com.amazonaws.services.s3.AmazonS3; diff --git a/common/src/main/java/apoc/util/s3/S3UrlStreamHandlerFactory.java b/common/src/main/java/apoc/util/s3/S3UrlStreamHandlerFactory.java index 49c695bc84..498e95a0a2 100644 --- a/common/src/main/java/apoc/util/s3/S3UrlStreamHandlerFactory.java +++ b/common/src/main/java/apoc/util/s3/S3UrlStreamHandlerFactory.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import java.net.URL; diff --git a/common/src/main/java/apoc/uuid/UuidUtil.java b/common/src/main/java/apoc/uuid/UuidUtil.java index e42f7f4700..fe8b1bc0cc 100644 --- a/common/src/main/java/apoc/uuid/UuidUtil.java +++ b/common/src/main/java/apoc/uuid/UuidUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.uuid; import java.nio.ByteBuffer; diff --git a/common/src/main/java/org/HdrHistogram/HistogramUtil.java b/common/src/main/java/org/HdrHistogram/HistogramUtil.java index 08a882be15..669e0ca061 100644 --- a/common/src/main/java/org/HdrHistogram/HistogramUtil.java +++ b/common/src/main/java/org/HdrHistogram/HistogramUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.HdrHistogram; /** diff --git a/common/src/main/java/org/neo4j/cypher/export/CypherResultSubGraph.java b/common/src/main/java/org/neo4j/cypher/export/CypherResultSubGraph.java index 072e8b5764..88a236d107 100644 --- a/common/src/main/java/org/neo4j/cypher/export/CypherResultSubGraph.java +++ b/common/src/main/java/org/neo4j/cypher/export/CypherResultSubGraph.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.neo4j.cypher.export; import apoc.util.Util; diff --git a/common/src/main/java/org/neo4j/cypher/export/DatabaseSubGraph.java b/common/src/main/java/org/neo4j/cypher/export/DatabaseSubGraph.java index 8960399dc1..0b562b5579 100644 --- a/common/src/main/java/org/neo4j/cypher/export/DatabaseSubGraph.java +++ b/common/src/main/java/org/neo4j/cypher/export/DatabaseSubGraph.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.neo4j.cypher.export; import java.util.Comparator; diff --git a/common/src/main/java/org/neo4j/cypher/export/SubGraph.java b/common/src/main/java/org/neo4j/cypher/export/SubGraph.java index 6eb474b183..4c37b3aa4e 100644 --- a/common/src/main/java/org/neo4j/cypher/export/SubGraph.java +++ b/common/src/main/java/org/neo4j/cypher/export/SubGraph.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.neo4j.cypher.export; import apoc.util.collection.Iterables; diff --git a/common/src/test/java/apoc/ApocConfigTest.java b/common/src/test/java/apoc/ApocConfigTest.java index d7ee4fd477..a853e3e439 100644 --- a/common/src/test/java/apoc/ApocConfigTest.java +++ b/common/src/test/java/apoc/ApocConfigTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import org.junit.Before; diff --git a/common/src/test/java/apoc/coll/SetBackedListTest.java b/common/src/test/java/apoc/coll/SetBackedListTest.java index 30601f2381..b0e1af48fb 100644 --- a/common/src/test/java/apoc/coll/SetBackedListTest.java +++ b/common/src/test/java/apoc/coll/SetBackedListTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.coll; import org.junit.Test; diff --git a/common/src/test/java/apoc/export/util/FormatUtilsTest.java b/common/src/test/java/apoc/export/util/FormatUtilsTest.java index 33128670c0..8689950a87 100644 --- a/common/src/test/java/apoc/export/util/FormatUtilsTest.java +++ b/common/src/test/java/apoc/export/util/FormatUtilsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.util; import org.junit.AfterClass; diff --git a/common/src/test/java/apoc/graph/document/builder/DocumentToGraphTest.java b/common/src/test/java/apoc/graph/document/builder/DocumentToGraphTest.java index fa6f6d4295..85e6f2c236 100644 --- a/common/src/test/java/apoc/graph/document/builder/DocumentToGraphTest.java +++ b/common/src/test/java/apoc/graph/document/builder/DocumentToGraphTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.graph.document.builder; import apoc.graph.util.GraphsConfig; diff --git a/common/src/test/java/apoc/graph/document/builder/LabelBuilderTest.java b/common/src/test/java/apoc/graph/document/builder/LabelBuilderTest.java index e9a729862b..4a078425af 100644 --- a/common/src/test/java/apoc/graph/document/builder/LabelBuilderTest.java +++ b/common/src/test/java/apoc/graph/document/builder/LabelBuilderTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.graph.document.builder; import apoc.graph.util.GraphsConfig; diff --git a/common/src/test/java/apoc/load/relative/LoadXmlResult.java b/common/src/test/java/apoc/load/relative/LoadXmlResult.java index 4540152ac3..6e544dd455 100644 --- a/common/src/test/java/apoc/load/relative/LoadXmlResult.java +++ b/common/src/test/java/apoc/load/relative/LoadXmlResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load.relative; import apoc.util.Util; diff --git a/common/src/test/java/apoc/path/RelationshipTypeAndDirectionsTest.java b/common/src/test/java/apoc/path/RelationshipTypeAndDirectionsTest.java index 6f1629f880..d12b58d729 100644 --- a/common/src/test/java/apoc/path/RelationshipTypeAndDirectionsTest.java +++ b/common/src/test/java/apoc/path/RelationshipTypeAndDirectionsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import org.apache.commons.lang3.tuple.Pair; diff --git a/common/src/test/java/apoc/result/VirtualNodeTest.java b/common/src/test/java/apoc/result/VirtualNodeTest.java index 0027015697..622859e385 100644 --- a/common/src/test/java/apoc/result/VirtualNodeTest.java +++ b/common/src/test/java/apoc/result/VirtualNodeTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.result; import apoc.util.Util; diff --git a/common/src/test/java/apoc/test/EnvSettingRule.java b/common/src/test/java/apoc/test/EnvSettingRule.java index 839eaed73b..c955d18706 100644 --- a/common/src/test/java/apoc/test/EnvSettingRule.java +++ b/common/src/test/java/apoc/test/EnvSettingRule.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.test; import apoc.test.annotations.Env; diff --git a/common/src/test/java/apoc/test/annotations/Env.java b/common/src/test/java/apoc/test/annotations/Env.java index 1b91ed5d49..ec29d29c18 100644 --- a/common/src/test/java/apoc/test/annotations/Env.java +++ b/common/src/test/java/apoc/test/annotations/Env.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.test.annotations; import java.lang.annotation.ElementType; diff --git a/common/src/test/java/apoc/test/annotations/EnvSetting.java b/common/src/test/java/apoc/test/annotations/EnvSetting.java index b164dd9ee4..35dc93b2bb 100644 --- a/common/src/test/java/apoc/test/annotations/EnvSetting.java +++ b/common/src/test/java/apoc/test/annotations/EnvSetting.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.test.annotations; import java.lang.annotation.ElementType; diff --git a/common/src/test/java/apoc/util/BinaryTestUtil.java b/common/src/test/java/apoc/util/BinaryTestUtil.java index 48a44b4569..db2f534e1a 100644 --- a/common/src/test/java/apoc/util/BinaryTestUtil.java +++ b/common/src/test/java/apoc/util/BinaryTestUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.apache.commons.io.FileUtils; diff --git a/common/src/test/java/apoc/util/DateParseUtilTest.java b/common/src/test/java/apoc/util/DateParseUtilTest.java index 6754fd69df..2357eec733 100644 --- a/common/src/test/java/apoc/util/DateParseUtilTest.java +++ b/common/src/test/java/apoc/util/DateParseUtilTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.junit.Test; diff --git a/common/src/test/java/apoc/util/FixedSizeStringWriterTest.java b/common/src/test/java/apoc/util/FixedSizeStringWriterTest.java index b711717be7..0eeb1daffe 100644 --- a/common/src/test/java/apoc/util/FixedSizeStringWriterTest.java +++ b/common/src/test/java/apoc/util/FixedSizeStringWriterTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.junit.Test; diff --git a/common/src/test/java/apoc/util/SortedArraySetTest.java b/common/src/test/java/apoc/util/SortedArraySetTest.java index a4a52a2318..896a0f7c60 100644 --- a/common/src/test/java/apoc/util/SortedArraySetTest.java +++ b/common/src/test/java/apoc/util/SortedArraySetTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.junit.Test; diff --git a/common/src/test/java/apoc/util/UtilQuoteTest.java b/common/src/test/java/apoc/util/UtilQuoteTest.java index b6f18cce99..5006b3863e 100644 --- a/common/src/test/java/apoc/util/UtilQuoteTest.java +++ b/common/src/test/java/apoc/util/UtilQuoteTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.junit.AfterClass; diff --git a/common/src/test/java/apoc/util/collection/AbstractResourceIterableTest.java b/common/src/test/java/apoc/util/collection/AbstractResourceIterableTest.java index 1d76066378..96dfc6d65d 100644 --- a/common/src/test/java/apoc/util/collection/AbstractResourceIterableTest.java +++ b/common/src/test/java/apoc/util/collection/AbstractResourceIterableTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import static apoc.util.collection.CollectionTestHelper.asIterator; diff --git a/common/src/test/java/apoc/util/collection/CollectionTestHelper.java b/common/src/test/java/apoc/util/collection/CollectionTestHelper.java index 962023d900..7e4134b6d2 100644 --- a/common/src/test/java/apoc/util/collection/CollectionTestHelper.java +++ b/common/src/test/java/apoc/util/collection/CollectionTestHelper.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import java.util.Iterator; diff --git a/common/src/test/java/apoc/util/collection/IterablesTest.java b/common/src/test/java/apoc/util/collection/IterablesTest.java index 5dbc01fd88..e91c1666d2 100644 --- a/common/src/test/java/apoc/util/collection/IterablesTest.java +++ b/common/src/test/java/apoc/util/collection/IterablesTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import static apoc.util.collection.CollectionTestHelper.emptyResourceIterator; diff --git a/common/src/test/java/apoc/util/collection/ResourceClosingIteratorTest.java b/common/src/test/java/apoc/util/collection/ResourceClosingIteratorTest.java index 9c7cf7067e..307987d867 100644 --- a/common/src/test/java/apoc/util/collection/ResourceClosingIteratorTest.java +++ b/common/src/test/java/apoc/util/collection/ResourceClosingIteratorTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.collection; import static apoc.util.collection.CollectionTestHelper.resourceIterator; diff --git a/common/src/test/java/apoc/util/kernel/MultiThreadedGlobalGraphOperationsTest.java b/common/src/test/java/apoc/util/kernel/MultiThreadedGlobalGraphOperationsTest.java index 8cba5a36b8..e36642e270 100644 --- a/common/src/test/java/apoc/util/kernel/MultiThreadedGlobalGraphOperationsTest.java +++ b/common/src/test/java/apoc/util/kernel/MultiThreadedGlobalGraphOperationsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.kernel; import org.junit.AfterClass; diff --git a/common/src/test/java/apoc/uuid/UuidUtilTest.java b/common/src/test/java/apoc/uuid/UuidUtilTest.java index ecced0d8b2..64a0534e19 100644 --- a/common/src/test/java/apoc/uuid/UuidUtilTest.java +++ b/common/src/test/java/apoc/uuid/UuidUtilTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.uuid; import org.junit.Test; diff --git a/core/build.gradle b/core/build.gradle index c42e8864a7..f42efa6bb1 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -44,17 +44,6 @@ dependencies { apt project(':processor') apt group: 'org.neo4j', name: 'neo4j', version: neo4jVersionEffective - def withoutServers = { - exclude group: 'org.eclipse.jetty' - exclude group: 'org.eclipse.jetty.aggregate' - exclude group: 'org.apache.hive', module: 'hive-service' - } - - def withoutJacksons = { - exclude group: 'com.fasterxml.jackson.core', module: 'jackson-annotations' - exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind' - } - // These will be dependencies packaged with the .jar implementation project(":common") implementation group: 'com.opencsv', name: 'opencsv', version: '5.7.1' diff --git a/core/src/main/java/apoc/CoreApocGlobalComponents.java b/core/src/main/java/apoc/CoreApocGlobalComponents.java index 89def84f3c..67d696e707 100644 --- a/core/src/main/java/apoc/CoreApocGlobalComponents.java +++ b/core/src/main/java/apoc/CoreApocGlobalComponents.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc; import apoc.cypher.CypherInitializer; diff --git a/core/src/main/java/apoc/agg/CollAggregation.java b/core/src/main/java/apoc/agg/CollAggregation.java index 0909d2c9a0..e18be7cb46 100644 --- a/core/src/main/java/apoc/agg/CollAggregation.java +++ b/core/src/main/java/apoc/agg/CollAggregation.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import org.neo4j.procedure.*; diff --git a/core/src/main/java/apoc/agg/Graph.java b/core/src/main/java/apoc/agg/Graph.java index 6a867637bc..605fc5329d 100644 --- a/core/src/main/java/apoc/agg/Graph.java +++ b/core/src/main/java/apoc/agg/Graph.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import apoc.coll.SetBackedList; diff --git a/core/src/main/java/apoc/agg/MaxAndMinItems.java b/core/src/main/java/apoc/agg/MaxAndMinItems.java index dde5a9cb79..020e0e917d 100644 --- a/core/src/main/java/apoc/agg/MaxAndMinItems.java +++ b/core/src/main/java/apoc/agg/MaxAndMinItems.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import apoc.util.Util; diff --git a/core/src/main/java/apoc/agg/Median.java b/core/src/main/java/apoc/agg/Median.java index 7b5cc53fcd..9578891853 100644 --- a/core/src/main/java/apoc/agg/Median.java +++ b/core/src/main/java/apoc/agg/Median.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import org.neo4j.procedure.*; diff --git a/core/src/main/java/apoc/agg/Percentiles.java b/core/src/main/java/apoc/agg/Percentiles.java index cf6cadbcf8..3f8a267614 100644 --- a/core/src/main/java/apoc/agg/Percentiles.java +++ b/core/src/main/java/apoc/agg/Percentiles.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import org.HdrHistogram.DoubleHistogram; diff --git a/core/src/main/java/apoc/agg/Product.java b/core/src/main/java/apoc/agg/Product.java index 524f683d1e..f4b5488f35 100644 --- a/core/src/main/java/apoc/agg/Product.java +++ b/core/src/main/java/apoc/agg/Product.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import org.neo4j.procedure.*; diff --git a/core/src/main/java/apoc/agg/Statistics.java b/core/src/main/java/apoc/agg/Statistics.java index cbd0ff15a4..4c38edc68c 100644 --- a/core/src/main/java/apoc/agg/Statistics.java +++ b/core/src/main/java/apoc/agg/Statistics.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import org.HdrHistogram.DoubleHistogram; diff --git a/core/src/main/java/apoc/algo/Cover.java b/core/src/main/java/apoc/algo/Cover.java index a421354085..6938738bbb 100644 --- a/core/src/main/java/apoc/algo/Cover.java +++ b/core/src/main/java/apoc/algo/Cover.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.algo; import apoc.result.RelationshipResult; diff --git a/core/src/main/java/apoc/algo/PathFinding.java b/core/src/main/java/apoc/algo/PathFinding.java index 39dd344236..10c3c6ae12 100644 --- a/core/src/main/java/apoc/algo/PathFinding.java +++ b/core/src/main/java/apoc/algo/PathFinding.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.algo; import apoc.result.PathResult; diff --git a/core/src/main/java/apoc/atomic/Atomic.java b/core/src/main/java/apoc/atomic/Atomic.java index f14b01d963..79dc86cc45 100644 --- a/core/src/main/java/apoc/atomic/Atomic.java +++ b/core/src/main/java/apoc/atomic/Atomic.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.atomic; import apoc.atomic.util.AtomicUtils; diff --git a/core/src/main/java/apoc/atomic/util/AtomicUtils.java b/core/src/main/java/apoc/atomic/util/AtomicUtils.java index a10ba08194..63b7d5315e 100644 --- a/core/src/main/java/apoc/atomic/util/AtomicUtils.java +++ b/core/src/main/java/apoc/atomic/util/AtomicUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.atomic.util; /** diff --git a/core/src/main/java/apoc/bitwise/BitwiseOperations.java b/core/src/main/java/apoc/bitwise/BitwiseOperations.java index cc61ddeef1..dd7bee42d5 100644 --- a/core/src/main/java/apoc/bitwise/BitwiseOperations.java +++ b/core/src/main/java/apoc/bitwise/BitwiseOperations.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.bitwise; import org.neo4j.procedure.Description; diff --git a/core/src/main/java/apoc/coll/Coll.java b/core/src/main/java/apoc/coll/Coll.java index 2a4784d9ff..c144c0dc6e 100644 --- a/core/src/main/java/apoc/coll/Coll.java +++ b/core/src/main/java/apoc/coll/Coll.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.coll; import apoc.result.ListResult; diff --git a/core/src/main/java/apoc/convert/Convert.java b/core/src/main/java/apoc/convert/Convert.java index 50c5975d85..945ab22d16 100644 --- a/core/src/main/java/apoc/convert/Convert.java +++ b/core/src/main/java/apoc/convert/Convert.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.convert; import apoc.coll.SetBackedList; diff --git a/core/src/main/java/apoc/convert/ConvertConfig.java b/core/src/main/java/apoc/convert/ConvertConfig.java index a570b44c26..4dd6dfe097 100644 --- a/core/src/main/java/apoc/convert/ConvertConfig.java +++ b/core/src/main/java/apoc/convert/ConvertConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.convert; import apoc.util.Util; diff --git a/core/src/main/java/apoc/convert/Json.java b/core/src/main/java/apoc/convert/Json.java index b2f78d31d6..eef822da0a 100644 --- a/core/src/main/java/apoc/convert/Json.java +++ b/core/src/main/java/apoc/convert/Json.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.convert; import apoc.meta.Types; diff --git a/core/src/main/java/apoc/create/Create.java b/core/src/main/java/apoc/create/Create.java index 2fbc128f61..782c13b4e4 100644 --- a/core/src/main/java/apoc/create/Create.java +++ b/core/src/main/java/apoc/create/Create.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.create; import apoc.get.Get; diff --git a/core/src/main/java/apoc/cypher/Cypher.java b/core/src/main/java/apoc/cypher/Cypher.java index 3edf22d69c..445a3ff970 100644 --- a/core/src/main/java/apoc/cypher/Cypher.java +++ b/core/src/main/java/apoc/cypher/Cypher.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.cypher; import apoc.Pools; diff --git a/core/src/main/java/apoc/cypher/CypherFunctions.java b/core/src/main/java/apoc/cypher/CypherFunctions.java index 6eb6c42720..9685270c12 100644 --- a/core/src/main/java/apoc/cypher/CypherFunctions.java +++ b/core/src/main/java/apoc/cypher/CypherFunctions.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.cypher; import org.neo4j.graphdb.ResourceIterator; diff --git a/core/src/main/java/apoc/cypher/CypherInitializer.java b/core/src/main/java/apoc/cypher/CypherInitializer.java index efa255da2e..62a191ba85 100644 --- a/core/src/main/java/apoc/cypher/CypherInitializer.java +++ b/core/src/main/java/apoc/cypher/CypherInitializer.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.cypher; import apoc.ApocConfig; diff --git a/core/src/main/java/apoc/cypher/Timeboxed.java b/core/src/main/java/apoc/cypher/Timeboxed.java index 2faaadfbf3..44818a5a06 100644 --- a/core/src/main/java/apoc/cypher/Timeboxed.java +++ b/core/src/main/java/apoc/cypher/Timeboxed.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.cypher; import apoc.Pools; diff --git a/core/src/main/java/apoc/data/url/ExtractURL.java b/core/src/main/java/apoc/data/url/ExtractURL.java index 1394dc3e8b..84b5c2dcd9 100644 --- a/core/src/main/java/apoc/data/url/ExtractURL.java +++ b/core/src/main/java/apoc/data/url/ExtractURL.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.data.url; import org.neo4j.procedure.Description; diff --git a/core/src/main/java/apoc/date/Date.java b/core/src/main/java/apoc/date/Date.java index 4eb780ad0f..e39fe90994 100644 --- a/core/src/main/java/apoc/date/Date.java +++ b/core/src/main/java/apoc/date/Date.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.date; import apoc.util.DateFormatUtil; diff --git a/core/src/main/java/apoc/diff/Diff.java b/core/src/main/java/apoc/diff/Diff.java index 59f4ca4e58..871ab18dee 100644 --- a/core/src/main/java/apoc/diff/Diff.java +++ b/core/src/main/java/apoc/diff/Diff.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.diff; import apoc.util.Util; diff --git a/core/src/main/java/apoc/example/Examples.java b/core/src/main/java/apoc/example/Examples.java index 5ec106bb54..f492e18354 100644 --- a/core/src/main/java/apoc/example/Examples.java +++ b/core/src/main/java/apoc/example/Examples.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.example; import apoc.result.ProgressInfo; diff --git a/core/src/main/java/apoc/export/arrow/ArrowConfig.java b/core/src/main/java/apoc/export/arrow/ArrowConfig.java index 4bb2b49a70..8131e5a1d1 100644 --- a/core/src/main/java/apoc/export/arrow/ArrowConfig.java +++ b/core/src/main/java/apoc/export/arrow/ArrowConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.util.Util; diff --git a/core/src/main/java/apoc/export/arrow/ArrowUtils.java b/core/src/main/java/apoc/export/arrow/ArrowUtils.java index 43c7e83d0f..cec08d1f65 100644 --- a/core/src/main/java/apoc/export/arrow/ArrowUtils.java +++ b/core/src/main/java/apoc/export/arrow/ArrowUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import org.apache.arrow.vector.types.Types; diff --git a/core/src/main/java/apoc/export/arrow/ExportArrow.java b/core/src/main/java/apoc/export/arrow/ExportArrow.java index aecb0bd1d4..0df126e31a 100644 --- a/core/src/main/java/apoc/export/arrow/ExportArrow.java +++ b/core/src/main/java/apoc/export/arrow/ExportArrow.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.Pools; diff --git a/core/src/main/java/apoc/export/arrow/ExportArrowFileStrategy.java b/core/src/main/java/apoc/export/arrow/ExportArrowFileStrategy.java index d6f0e2b8a6..b59a1baea5 100644 --- a/core/src/main/java/apoc/export/arrow/ExportArrowFileStrategy.java +++ b/core/src/main/java/apoc/export/arrow/ExportArrowFileStrategy.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.convert.Json; diff --git a/core/src/main/java/apoc/export/arrow/ExportArrowService.java b/core/src/main/java/apoc/export/arrow/ExportArrowService.java index 13a25718ec..8b91d961a8 100644 --- a/core/src/main/java/apoc/export/arrow/ExportArrowService.java +++ b/core/src/main/java/apoc/export/arrow/ExportArrowService.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.Pools; diff --git a/core/src/main/java/apoc/export/arrow/ExportArrowStrategy.java b/core/src/main/java/apoc/export/arrow/ExportArrowStrategy.java index 6f952b7876..9f49295e89 100644 --- a/core/src/main/java/apoc/export/arrow/ExportArrowStrategy.java +++ b/core/src/main/java/apoc/export/arrow/ExportArrowStrategy.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.util.JsonUtil; diff --git a/core/src/main/java/apoc/export/arrow/ExportArrowStreamStrategy.java b/core/src/main/java/apoc/export/arrow/ExportArrowStreamStrategy.java index aff2d731e0..ebf8d2d2e2 100644 --- a/core/src/main/java/apoc/export/arrow/ExportArrowStreamStrategy.java +++ b/core/src/main/java/apoc/export/arrow/ExportArrowStreamStrategy.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.convert.Json; diff --git a/core/src/main/java/apoc/export/arrow/ExportGraphFileStrategy.java b/core/src/main/java/apoc/export/arrow/ExportGraphFileStrategy.java index b8ce4967f6..7869458166 100644 --- a/core/src/main/java/apoc/export/arrow/ExportGraphFileStrategy.java +++ b/core/src/main/java/apoc/export/arrow/ExportGraphFileStrategy.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.Pools; diff --git a/core/src/main/java/apoc/export/arrow/ExportGraphStrategy.java b/core/src/main/java/apoc/export/arrow/ExportGraphStrategy.java index e72f8f577e..dc36f4dd13 100644 --- a/core/src/main/java/apoc/export/arrow/ExportGraphStrategy.java +++ b/core/src/main/java/apoc/export/arrow/ExportGraphStrategy.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.util.Util; diff --git a/core/src/main/java/apoc/export/arrow/ExportGraphStreamStrategy.java b/core/src/main/java/apoc/export/arrow/ExportGraphStreamStrategy.java index d7364b18ab..9de6bce5f2 100644 --- a/core/src/main/java/apoc/export/arrow/ExportGraphStreamStrategy.java +++ b/core/src/main/java/apoc/export/arrow/ExportGraphStreamStrategy.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.Pools; diff --git a/core/src/main/java/apoc/export/arrow/ExportResultFileStrategy.java b/core/src/main/java/apoc/export/arrow/ExportResultFileStrategy.java index c8d8e8483c..c18ea904ae 100644 --- a/core/src/main/java/apoc/export/arrow/ExportResultFileStrategy.java +++ b/core/src/main/java/apoc/export/arrow/ExportResultFileStrategy.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.Pools; diff --git a/core/src/main/java/apoc/export/arrow/ExportResultStrategy.java b/core/src/main/java/apoc/export/arrow/ExportResultStrategy.java index 0b23b475f7..600e5b3d6d 100644 --- a/core/src/main/java/apoc/export/arrow/ExportResultStrategy.java +++ b/core/src/main/java/apoc/export/arrow/ExportResultStrategy.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.meta.Types; diff --git a/core/src/main/java/apoc/export/arrow/ExportResultStreamStrategy.java b/core/src/main/java/apoc/export/arrow/ExportResultStreamStrategy.java index b86113b9c0..5120cb9cfc 100644 --- a/core/src/main/java/apoc/export/arrow/ExportResultStreamStrategy.java +++ b/core/src/main/java/apoc/export/arrow/ExportResultStreamStrategy.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.Pools; diff --git a/core/src/main/java/apoc/export/csv/CsvEntityLoader.java b/core/src/main/java/apoc/export/csv/CsvEntityLoader.java index a192ec4965..f0f7d7ad82 100644 --- a/core/src/main/java/apoc/export/csv/CsvEntityLoader.java +++ b/core/src/main/java/apoc/export/csv/CsvEntityLoader.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.export.util.BatchTransaction; diff --git a/core/src/main/java/apoc/export/csv/CsvFormat.java b/core/src/main/java/apoc/export/csv/CsvFormat.java index 781154b702..656b7ff2ea 100644 --- a/core/src/main/java/apoc/export/csv/CsvFormat.java +++ b/core/src/main/java/apoc/export/csv/CsvFormat.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.export.cypher.ExportFileManager; diff --git a/core/src/main/java/apoc/export/csv/CsvHeaderField.java b/core/src/main/java/apoc/export/csv/CsvHeaderField.java index 09215e8ec7..1b534183e8 100644 --- a/core/src/main/java/apoc/export/csv/CsvHeaderField.java +++ b/core/src/main/java/apoc/export/csv/CsvHeaderField.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.meta.Types; diff --git a/core/src/main/java/apoc/export/csv/CsvHeaderFields.java b/core/src/main/java/apoc/export/csv/CsvHeaderFields.java index ad11d0f95f..1255c778c1 100644 --- a/core/src/main/java/apoc/export/csv/CsvHeaderFields.java +++ b/core/src/main/java/apoc/export/csv/CsvHeaderFields.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import java.util.Arrays; diff --git a/core/src/main/java/apoc/export/csv/CsvLoaderConfig.java b/core/src/main/java/apoc/export/csv/CsvLoaderConfig.java index 5012d85f61..3ef92d6797 100644 --- a/core/src/main/java/apoc/export/csv/CsvLoaderConfig.java +++ b/core/src/main/java/apoc/export/csv/CsvLoaderConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.util.CompressionAlgo; diff --git a/core/src/main/java/apoc/export/csv/CsvLoaderConstants.java b/core/src/main/java/apoc/export/csv/CsvLoaderConstants.java index bac43deaba..0ad928b6d6 100644 --- a/core/src/main/java/apoc/export/csv/CsvLoaderConstants.java +++ b/core/src/main/java/apoc/export/csv/CsvLoaderConstants.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import java.util.regex.Pattern; diff --git a/core/src/main/java/apoc/export/csv/CsvPropertyConverter.java b/core/src/main/java/apoc/export/csv/CsvPropertyConverter.java index 071543fb3d..fecaa16b9d 100644 --- a/core/src/main/java/apoc/export/csv/CsvPropertyConverter.java +++ b/core/src/main/java/apoc/export/csv/CsvPropertyConverter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import org.apache.commons.lang3.StringUtils; diff --git a/core/src/main/java/apoc/export/csv/ExportCSV.java b/core/src/main/java/apoc/export/csv/ExportCSV.java index be64c795d8..975bc74916 100644 --- a/core/src/main/java/apoc/export/csv/ExportCSV.java +++ b/core/src/main/java/apoc/export/csv/ExportCSV.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.ApocConfig; diff --git a/core/src/main/java/apoc/export/csv/ImportCsv.java b/core/src/main/java/apoc/export/csv/ImportCsv.java index dfb0ac9210..2f9c39cd3b 100644 --- a/core/src/main/java/apoc/export/csv/ImportCsv.java +++ b/core/src/main/java/apoc/export/csv/ImportCsv.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.Pools; diff --git a/core/src/main/java/apoc/export/cypher/ExportCypher.java b/core/src/main/java/apoc/export/cypher/ExportCypher.java index e2f9c6c469..31b73ea887 100644 --- a/core/src/main/java/apoc/export/cypher/ExportCypher.java +++ b/core/src/main/java/apoc/export/cypher/ExportCypher.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher; import apoc.ApocConfig; diff --git a/core/src/main/java/apoc/export/cypher/MultiStatementCypherSubGraphExporter.java b/core/src/main/java/apoc/export/cypher/MultiStatementCypherSubGraphExporter.java index 3ae60b4496..415df50fec 100644 --- a/core/src/main/java/apoc/export/cypher/MultiStatementCypherSubGraphExporter.java +++ b/core/src/main/java/apoc/export/cypher/MultiStatementCypherSubGraphExporter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher; import apoc.export.cypher.formatter.CypherFormatter; diff --git a/core/src/main/java/apoc/export/graphml/ExportGraphML.java b/core/src/main/java/apoc/export/graphml/ExportGraphML.java index 0d574b9216..0d34d44859 100644 --- a/core/src/main/java/apoc/export/graphml/ExportGraphML.java +++ b/core/src/main/java/apoc/export/graphml/ExportGraphML.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.graphml; import apoc.ApocConfig; diff --git a/core/src/main/java/apoc/export/graphml/XmlGraphMLReader.java b/core/src/main/java/apoc/export/graphml/XmlGraphMLReader.java index f6561e151f..692ac27c54 100644 --- a/core/src/main/java/apoc/export/graphml/XmlGraphMLReader.java +++ b/core/src/main/java/apoc/export/graphml/XmlGraphMLReader.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.graphml; import apoc.export.util.BatchTransaction; diff --git a/core/src/main/java/apoc/export/graphml/XmlGraphMLWriter.java b/core/src/main/java/apoc/export/graphml/XmlGraphMLWriter.java index 750d71e931..1630981642 100644 --- a/core/src/main/java/apoc/export/graphml/XmlGraphMLWriter.java +++ b/core/src/main/java/apoc/export/graphml/XmlGraphMLWriter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.graphml; import apoc.export.util.*; diff --git a/core/src/main/java/apoc/export/graphml/XmlNodeExport.java b/core/src/main/java/apoc/export/graphml/XmlNodeExport.java index 4caf035b17..93c8acaf21 100644 --- a/core/src/main/java/apoc/export/graphml/XmlNodeExport.java +++ b/core/src/main/java/apoc/export/graphml/XmlNodeExport.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.graphml; import apoc.export.util.ExportConfig; diff --git a/core/src/main/java/apoc/export/json/ExportJson.java b/core/src/main/java/apoc/export/json/ExportJson.java index c531ac3666..8f7e28862b 100644 --- a/core/src/main/java/apoc/export/json/ExportJson.java +++ b/core/src/main/java/apoc/export/json/ExportJson.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.json; import apoc.ApocConfig; diff --git a/core/src/main/java/apoc/export/json/ImportJson.java b/core/src/main/java/apoc/export/json/ImportJson.java index 450c7de3cc..c825e01237 100644 --- a/core/src/main/java/apoc/export/json/ImportJson.java +++ b/core/src/main/java/apoc/export/json/ImportJson.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.json; import apoc.Pools; diff --git a/core/src/main/java/apoc/export/json/ImportJsonConfig.java b/core/src/main/java/apoc/export/json/ImportJsonConfig.java index 87f331e463..1860a4dfa2 100644 --- a/core/src/main/java/apoc/export/json/ImportJsonConfig.java +++ b/core/src/main/java/apoc/export/json/ImportJsonConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.json; import apoc.util.CompressionConfig; diff --git a/core/src/main/java/apoc/export/json/JsonFormat.java b/core/src/main/java/apoc/export/json/JsonFormat.java index 0bca6b9c5b..f140a201d9 100644 --- a/core/src/main/java/apoc/export/json/JsonFormat.java +++ b/core/src/main/java/apoc/export/json/JsonFormat.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.json; import apoc.export.cypher.ExportFileManager; diff --git a/core/src/main/java/apoc/export/json/JsonFormatSerializer.java b/core/src/main/java/apoc/export/json/JsonFormatSerializer.java index b3ba06632e..b483c17b70 100644 --- a/core/src/main/java/apoc/export/json/JsonFormatSerializer.java +++ b/core/src/main/java/apoc/export/json/JsonFormatSerializer.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.json; import apoc.export.util.ExportConfig; diff --git a/core/src/main/java/apoc/export/json/JsonImporter.java b/core/src/main/java/apoc/export/json/JsonImporter.java index 2bb5760755..8571fd2c80 100644 --- a/core/src/main/java/apoc/export/json/JsonImporter.java +++ b/core/src/main/java/apoc/export/json/JsonImporter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.json; import apoc.export.util.Reporter; diff --git a/core/src/main/java/apoc/graph/Graphs.java b/core/src/main/java/apoc/graph/Graphs.java index 595056419a..dba332aa2f 100644 --- a/core/src/main/java/apoc/graph/Graphs.java +++ b/core/src/main/java/apoc/graph/Graphs.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.graph; import apoc.cypher.CypherUtils; diff --git a/core/src/main/java/apoc/hashing/Fingerprinting.java b/core/src/main/java/apoc/hashing/Fingerprinting.java index 74bcd7bca5..bcf300ea67 100644 --- a/core/src/main/java/apoc/hashing/Fingerprinting.java +++ b/core/src/main/java/apoc/hashing/Fingerprinting.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.hashing; import apoc.util.Util; diff --git a/core/src/main/java/apoc/hashing/FingerprintingConfig.java b/core/src/main/java/apoc/hashing/FingerprintingConfig.java index 2351fd5711..81b737ac5f 100644 --- a/core/src/main/java/apoc/hashing/FingerprintingConfig.java +++ b/core/src/main/java/apoc/hashing/FingerprintingConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.hashing; import apoc.util.Util; diff --git a/core/src/main/java/apoc/help/Help.java b/core/src/main/java/apoc/help/Help.java index cb397aab5b..b1386037ed 100644 --- a/core/src/main/java/apoc/help/Help.java +++ b/core/src/main/java/apoc/help/Help.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.help; import java.io.BufferedReader; diff --git a/core/src/main/java/apoc/help/HelpResult.java b/core/src/main/java/apoc/help/HelpResult.java index f62a1088e2..8e0f845389 100644 --- a/core/src/main/java/apoc/help/HelpResult.java +++ b/core/src/main/java/apoc/help/HelpResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.help; import java.util.List; diff --git a/core/src/main/java/apoc/index/QueuePoisoningCollector.java b/core/src/main/java/apoc/index/QueuePoisoningCollector.java index c8c1719f76..364e9c0c34 100644 --- a/core/src/main/java/apoc/index/QueuePoisoningCollector.java +++ b/core/src/main/java/apoc/index/QueuePoisoningCollector.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.index; import java.util.HashSet; diff --git a/core/src/main/java/apoc/index/SchemaIndex.java b/core/src/main/java/apoc/index/SchemaIndex.java index d6769055bd..edea6c8fa1 100644 --- a/core/src/main/java/apoc/index/SchemaIndex.java +++ b/core/src/main/java/apoc/index/SchemaIndex.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.index; import apoc.result.ListResult; diff --git a/core/src/main/java/apoc/label/Label.java b/core/src/main/java/apoc/label/Label.java index 8396d4e855..7f3677d7ed 100644 --- a/core/src/main/java/apoc/label/Label.java +++ b/core/src/main/java/apoc/label/Label.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.label; import org.neo4j.graphdb.*; diff --git a/core/src/main/java/apoc/load/LoadArrow.java b/core/src/main/java/apoc/load/LoadArrow.java index 010a2e3f93..d728b77406 100644 --- a/core/src/main/java/apoc/load/LoadArrow.java +++ b/core/src/main/java/apoc/load/LoadArrow.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import apoc.result.MapResult; diff --git a/core/src/main/java/apoc/load/LoadJson.java b/core/src/main/java/apoc/load/LoadJson.java index cf8c20271c..48297790ac 100644 --- a/core/src/main/java/apoc/load/LoadJson.java +++ b/core/src/main/java/apoc/load/LoadJson.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import apoc.result.MapResult; diff --git a/core/src/main/java/apoc/load/SkipWhitespaceInputStream.java b/core/src/main/java/apoc/load/SkipWhitespaceInputStream.java index 32fe7d52ed..8d2f08994a 100644 --- a/core/src/main/java/apoc/load/SkipWhitespaceInputStream.java +++ b/core/src/main/java/apoc/load/SkipWhitespaceInputStream.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import org.apache.commons.lang3.ArrayUtils; diff --git a/core/src/main/java/apoc/load/Xml.java b/core/src/main/java/apoc/load/Xml.java index 5765958730..e08d552c5a 100644 --- a/core/src/main/java/apoc/load/Xml.java +++ b/core/src/main/java/apoc/load/Xml.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import apoc.ApocConfig; diff --git a/core/src/main/java/apoc/lock/Lock.java b/core/src/main/java/apoc/lock/Lock.java index 228f3e7bb9..43ef9c613d 100644 --- a/core/src/main/java/apoc/lock/Lock.java +++ b/core/src/main/java/apoc/lock/Lock.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.lock; import org.neo4j.graphdb.Node; diff --git a/core/src/main/java/apoc/log/Neo4jLogStream.java b/core/src/main/java/apoc/log/Neo4jLogStream.java index 740593341c..d519ff4503 100644 --- a/core/src/main/java/apoc/log/Neo4jLogStream.java +++ b/core/src/main/java/apoc/log/Neo4jLogStream.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.log; import apoc.util.FileUtils; diff --git a/core/src/main/java/apoc/map/Maps.java b/core/src/main/java/apoc/map/Maps.java index be06d53553..f1fa6bad22 100644 --- a/core/src/main/java/apoc/map/Maps.java +++ b/core/src/main/java/apoc/map/Maps.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.map; import apoc.util.Util; diff --git a/core/src/main/java/apoc/math/Maths.java b/core/src/main/java/apoc/math/Maths.java index de111347ca..f75a6a39b9 100644 --- a/core/src/main/java/apoc/math/Maths.java +++ b/core/src/main/java/apoc/math/Maths.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.math; import org.neo4j.procedure.Description; diff --git a/core/src/main/java/apoc/math/Regression.java b/core/src/main/java/apoc/math/Regression.java index 2fd44b1beb..da17bb16ae 100644 --- a/core/src/main/java/apoc/math/Regression.java +++ b/core/src/main/java/apoc/math/Regression.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.math; import org.apache.commons.math3.stat.regression.SimpleRegression; diff --git a/core/src/main/java/apoc/merge/Merge.java b/core/src/main/java/apoc/merge/Merge.java index 28cb43df3a..9eab6dff49 100644 --- a/core/src/main/java/apoc/merge/Merge.java +++ b/core/src/main/java/apoc/merge/Merge.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.merge; import apoc.cypher.Cypher; diff --git a/core/src/main/java/apoc/meta/Meta.java b/core/src/main/java/apoc/meta/Meta.java index f808a36f15..54fdff7325 100644 --- a/core/src/main/java/apoc/meta/Meta.java +++ b/core/src/main/java/apoc/meta/Meta.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta; import apoc.export.util.NodesAndRelsSubGraph; diff --git a/core/src/main/java/apoc/neighbors/Neighbors.java b/core/src/main/java/apoc/neighbors/Neighbors.java index f8bd605313..6ad290fa25 100644 --- a/core/src/main/java/apoc/neighbors/Neighbors.java +++ b/core/src/main/java/apoc/neighbors/Neighbors.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.neighbors; import apoc.result.ListResult; diff --git a/core/src/main/java/apoc/nodes/Grouping.java b/core/src/main/java/apoc/nodes/Grouping.java index 950698e1ca..adf31da0cc 100644 --- a/core/src/main/java/apoc/nodes/Grouping.java +++ b/core/src/main/java/apoc/nodes/Grouping.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.nodes; import apoc.Pools; diff --git a/core/src/main/java/apoc/nodes/Nodes.java b/core/src/main/java/apoc/nodes/Nodes.java index c1c5235797..a247d39260 100644 --- a/core/src/main/java/apoc/nodes/Nodes.java +++ b/core/src/main/java/apoc/nodes/Nodes.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.nodes; import apoc.Pools; diff --git a/core/src/main/java/apoc/nodes/NodesConfig.java b/core/src/main/java/apoc/nodes/NodesConfig.java index 35df2f77b8..b9a2436d39 100644 --- a/core/src/main/java/apoc/nodes/NodesConfig.java +++ b/core/src/main/java/apoc/nodes/NodesConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.nodes; import apoc.util.Util; diff --git a/core/src/main/java/apoc/number/ArabicRoman.java b/core/src/main/java/apoc/number/ArabicRoman.java index aeab8dbb39..beed8de27e 100644 --- a/core/src/main/java/apoc/number/ArabicRoman.java +++ b/core/src/main/java/apoc/number/ArabicRoman.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.number; diff --git a/core/src/main/java/apoc/number/Numbers.java b/core/src/main/java/apoc/number/Numbers.java index 495c1ce935..b620fb77de 100644 --- a/core/src/main/java/apoc/number/Numbers.java +++ b/core/src/main/java/apoc/number/Numbers.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.number; import org.apache.commons.lang3.StringUtils; diff --git a/core/src/main/java/apoc/number/exact/Exact.java b/core/src/main/java/apoc/number/exact/Exact.java index af73c768ff..46656002a3 100644 --- a/core/src/main/java/apoc/number/exact/Exact.java +++ b/core/src/main/java/apoc/number/exact/Exact.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.number.exact; import org.apache.commons.lang3.StringUtils; diff --git a/core/src/main/java/apoc/path/LabelMatcher.java b/core/src/main/java/apoc/path/LabelMatcher.java index 8d1ce38394..7304f53735 100644 --- a/core/src/main/java/apoc/path/LabelMatcher.java +++ b/core/src/main/java/apoc/path/LabelMatcher.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import java.util.*; diff --git a/core/src/main/java/apoc/path/LabelMatcherGroup.java b/core/src/main/java/apoc/path/LabelMatcherGroup.java index 758d4cf61a..969aac0bad 100644 --- a/core/src/main/java/apoc/path/LabelMatcherGroup.java +++ b/core/src/main/java/apoc/path/LabelMatcherGroup.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import org.neo4j.graphdb.Node; diff --git a/core/src/main/java/apoc/path/LabelSequenceEvaluator.java b/core/src/main/java/apoc/path/LabelSequenceEvaluator.java index 23ed7fd8e2..00ae894a30 100644 --- a/core/src/main/java/apoc/path/LabelSequenceEvaluator.java +++ b/core/src/main/java/apoc/path/LabelSequenceEvaluator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import org.neo4j.graphdb.Node; diff --git a/core/src/main/java/apoc/path/NodeEvaluators.java b/core/src/main/java/apoc/path/NodeEvaluators.java index 7bf3c20096..8ff900f94e 100644 --- a/core/src/main/java/apoc/path/NodeEvaluators.java +++ b/core/src/main/java/apoc/path/NodeEvaluators.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import org.neo4j.graphdb.Node; diff --git a/core/src/main/java/apoc/path/PathExplorer.java b/core/src/main/java/apoc/path/PathExplorer.java index b40133d9af..40b1d1695e 100644 --- a/core/src/main/java/apoc/path/PathExplorer.java +++ b/core/src/main/java/apoc/path/PathExplorer.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.algo.Cover; diff --git a/core/src/main/java/apoc/path/Paths.java b/core/src/main/java/apoc/path/Paths.java index d4f2465eed..30d4c4f652 100644 --- a/core/src/main/java/apoc/path/Paths.java +++ b/core/src/main/java/apoc/path/Paths.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.util.collection.Iterables; diff --git a/core/src/main/java/apoc/path/RelationshipSequenceExpander.java b/core/src/main/java/apoc/path/RelationshipSequenceExpander.java index 0071615a1a..5f455d2516 100644 --- a/core/src/main/java/apoc/path/RelationshipSequenceExpander.java +++ b/core/src/main/java/apoc/path/RelationshipSequenceExpander.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.util.collection.Iterables; diff --git a/core/src/main/java/apoc/periodic/Periodic.java b/core/src/main/java/apoc/periodic/Periodic.java index 4e299073a1..366cfc8048 100644 --- a/core/src/main/java/apoc/periodic/Periodic.java +++ b/core/src/main/java/apoc/periodic/Periodic.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.periodic; import apoc.Pools; diff --git a/core/src/main/java/apoc/refactor/GraphRefactoring.java b/core/src/main/java/apoc/refactor/GraphRefactoring.java index 2fb34c5329..49da53e5b2 100644 --- a/core/src/main/java/apoc/refactor/GraphRefactoring.java +++ b/core/src/main/java/apoc/refactor/GraphRefactoring.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor; import apoc.Pools; diff --git a/core/src/main/java/apoc/refactor/NodeRefactorResult.java b/core/src/main/java/apoc/refactor/NodeRefactorResult.java index 6c94d37a2e..5beb98986d 100644 --- a/core/src/main/java/apoc/refactor/NodeRefactorResult.java +++ b/core/src/main/java/apoc/refactor/NodeRefactorResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor; import org.neo4j.graphdb.Node; diff --git a/core/src/main/java/apoc/refactor/RelationshipRefactorResult.java b/core/src/main/java/apoc/refactor/RelationshipRefactorResult.java index 87927b6d3b..b3b1afe19b 100644 --- a/core/src/main/java/apoc/refactor/RelationshipRefactorResult.java +++ b/core/src/main/java/apoc/refactor/RelationshipRefactorResult.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor; import org.neo4j.graphdb.Relationship; diff --git a/core/src/main/java/apoc/refactor/rename/Rename.java b/core/src/main/java/apoc/refactor/rename/Rename.java index d56b6d12ae..23b68f8041 100644 --- a/core/src/main/java/apoc/refactor/rename/Rename.java +++ b/core/src/main/java/apoc/refactor/rename/Rename.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor.rename; import apoc.Pools; diff --git a/core/src/main/java/apoc/refactor/util/PropertiesManager.java b/core/src/main/java/apoc/refactor/util/PropertiesManager.java index 758009b0ad..286189d21d 100644 --- a/core/src/main/java/apoc/refactor/util/PropertiesManager.java +++ b/core/src/main/java/apoc/refactor/util/PropertiesManager.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor.util; import apoc.util.ArrayBackedList; diff --git a/core/src/main/java/apoc/refactor/util/RefactorConfig.java b/core/src/main/java/apoc/refactor/util/RefactorConfig.java index bf43ce0b18..c34400a23f 100644 --- a/core/src/main/java/apoc/refactor/util/RefactorConfig.java +++ b/core/src/main/java/apoc/refactor/util/RefactorConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor.util; import java.util.Collections; diff --git a/core/src/main/java/apoc/refactor/util/RefactorUtil.java b/core/src/main/java/apoc/refactor/util/RefactorUtil.java index fbc3f5f4fe..eda8f014ed 100644 --- a/core/src/main/java/apoc/refactor/util/RefactorUtil.java +++ b/core/src/main/java/apoc/refactor/util/RefactorUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor.util; import org.apache.commons.lang3.tuple.Pair; diff --git a/core/src/main/java/apoc/schema/SchemaConfig.java b/core/src/main/java/apoc/schema/SchemaConfig.java index b4fb4facf2..67e6e0186b 100644 --- a/core/src/main/java/apoc/schema/SchemaConfig.java +++ b/core/src/main/java/apoc/schema/SchemaConfig.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.schema; import java.util.*; diff --git a/core/src/main/java/apoc/schema/Schemas.java b/core/src/main/java/apoc/schema/Schemas.java index 069d6c1ad9..5a3b47e5a3 100644 --- a/core/src/main/java/apoc/schema/Schemas.java +++ b/core/src/main/java/apoc/schema/Schemas.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.schema; import apoc.result.AssertSchemaResult; diff --git a/core/src/main/java/apoc/scoring/Scoring.java b/core/src/main/java/apoc/scoring/Scoring.java index 3406e96aa4..fdaaacbf69 100644 --- a/core/src/main/java/apoc/scoring/Scoring.java +++ b/core/src/main/java/apoc/scoring/Scoring.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.scoring; import org.neo4j.procedure.Description; diff --git a/core/src/main/java/apoc/search/ParallelNodeSearch.java b/core/src/main/java/apoc/search/ParallelNodeSearch.java index 8ec242b335..6adb933db6 100644 --- a/core/src/main/java/apoc/search/ParallelNodeSearch.java +++ b/core/src/main/java/apoc/search/ParallelNodeSearch.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.search; import apoc.result.NodeResult; diff --git a/core/src/main/java/apoc/spatial/Distance.java b/core/src/main/java/apoc/spatial/Distance.java index 36cccb8468..afcf16a608 100644 --- a/core/src/main/java/apoc/spatial/Distance.java +++ b/core/src/main/java/apoc/spatial/Distance.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.spatial; import org.neo4j.procedure.Description; diff --git a/core/src/main/java/apoc/spatial/Geocode.java b/core/src/main/java/apoc/spatial/Geocode.java index 0a78248877..380ee06c04 100755 --- a/core/src/main/java/apoc/spatial/Geocode.java +++ b/core/src/main/java/apoc/spatial/Geocode.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.spatial; import apoc.util.JsonUtil; diff --git a/core/src/main/java/apoc/stats/DegreeDistribution.java b/core/src/main/java/apoc/stats/DegreeDistribution.java index 23aab637bd..5e2227fea5 100644 --- a/core/src/main/java/apoc/stats/DegreeDistribution.java +++ b/core/src/main/java/apoc/stats/DegreeDistribution.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.stats; import apoc.Pools; diff --git a/core/src/main/java/apoc/stats/DegreeUtil.java b/core/src/main/java/apoc/stats/DegreeUtil.java index 225aab8be9..f3f92f10ea 100644 --- a/core/src/main/java/apoc/stats/DegreeUtil.java +++ b/core/src/main/java/apoc/stats/DegreeUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.stats; import org.neo4j.graphdb.Direction; diff --git a/core/src/main/java/apoc/temporal/TemporalProcedures.java b/core/src/main/java/apoc/temporal/TemporalProcedures.java index ae783a6243..7f45d60421 100644 --- a/core/src/main/java/apoc/temporal/TemporalProcedures.java +++ b/core/src/main/java/apoc/temporal/TemporalProcedures.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.temporal; import org.neo4j.procedure.Description; diff --git a/core/src/main/java/apoc/text/Phonetic.java b/core/src/main/java/apoc/text/Phonetic.java index 637c699b69..8f477bea2c 100644 --- a/core/src/main/java/apoc/text/Phonetic.java +++ b/core/src/main/java/apoc/text/Phonetic.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.text; import org.apache.commons.codec.language.DoubleMetaphone; diff --git a/core/src/main/java/apoc/text/SorensenDiceCoefficient.java b/core/src/main/java/apoc/text/SorensenDiceCoefficient.java index 843e015c13..504ff2c48f 100644 --- a/core/src/main/java/apoc/text/SorensenDiceCoefficient.java +++ b/core/src/main/java/apoc/text/SorensenDiceCoefficient.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.text; import java.util.Arrays; diff --git a/core/src/main/java/apoc/text/Strings.java b/core/src/main/java/apoc/text/Strings.java index 01d7168f2f..24b3a721e1 100644 --- a/core/src/main/java/apoc/text/Strings.java +++ b/core/src/main/java/apoc/text/Strings.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.text; import apoc.util.Util; diff --git a/core/src/main/java/apoc/trigger/Trigger.java b/core/src/main/java/apoc/trigger/Trigger.java index 4fb6f674c7..cb469cc1c0 100644 --- a/core/src/main/java/apoc/trigger/Trigger.java +++ b/core/src/main/java/apoc/trigger/Trigger.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.util.Util; diff --git a/core/src/main/java/apoc/trigger/TriggerHandler.java b/core/src/main/java/apoc/trigger/TriggerHandler.java index 9721be0757..c1e68f1424 100644 --- a/core/src/main/java/apoc/trigger/TriggerHandler.java +++ b/core/src/main/java/apoc/trigger/TriggerHandler.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.ApocConfig; diff --git a/core/src/main/java/apoc/trigger/TriggerHandlerNewProcedures.java b/core/src/main/java/apoc/trigger/TriggerHandlerNewProcedures.java index 70f9e6f5a7..74995fa473 100644 --- a/core/src/main/java/apoc/trigger/TriggerHandlerNewProcedures.java +++ b/core/src/main/java/apoc/trigger/TriggerHandlerNewProcedures.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.SystemLabels; diff --git a/core/src/main/java/apoc/trigger/TriggerInfo.java b/core/src/main/java/apoc/trigger/TriggerInfo.java index 6447252bad..9cc15275de 100644 --- a/core/src/main/java/apoc/trigger/TriggerInfo.java +++ b/core/src/main/java/apoc/trigger/TriggerInfo.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.SystemPropertyKeys; diff --git a/core/src/main/java/apoc/trigger/TriggerMetadata.java b/core/src/main/java/apoc/trigger/TriggerMetadata.java index ca428278bf..1d03205109 100644 --- a/core/src/main/java/apoc/trigger/TriggerMetadata.java +++ b/core/src/main/java/apoc/trigger/TriggerMetadata.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.convert.ConvertUtils; diff --git a/core/src/main/java/apoc/trigger/TriggerNewProcedures.java b/core/src/main/java/apoc/trigger/TriggerNewProcedures.java index 673c1f6c84..d97a5ee49a 100644 --- a/core/src/main/java/apoc/trigger/TriggerNewProcedures.java +++ b/core/src/main/java/apoc/trigger/TriggerNewProcedures.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.util.Util; diff --git a/core/src/main/java/apoc/util/Utils.java b/core/src/main/java/apoc/util/Utils.java index 4af7c6e5af..712026ede9 100644 --- a/core/src/main/java/apoc/util/Utils.java +++ b/core/src/main/java/apoc/util/Utils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.apache.commons.codec.digest.DigestUtils; diff --git a/core/src/main/java/apoc/version/Version.java b/core/src/main/java/apoc/version/Version.java index eb00f16331..adb94beede 100644 --- a/core/src/main/java/apoc/version/Version.java +++ b/core/src/main/java/apoc/version/Version.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.version; import org.neo4j.procedure.Description; diff --git a/core/src/main/java/apoc/warmup/Warmup.java b/core/src/main/java/apoc/warmup/Warmup.java index 1937a882fa..16daaf7fc3 100644 --- a/core/src/main/java/apoc/warmup/Warmup.java +++ b/core/src/main/java/apoc/warmup/Warmup.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.warmup; import apoc.ApocConfig; diff --git a/core/src/test/java/apoc/agg/CollAggregationTest.java b/core/src/test/java/apoc/agg/CollAggregationTest.java index 4b87e26f81..dead90c0df 100644 --- a/core/src/test/java/apoc/agg/CollAggregationTest.java +++ b/core/src/test/java/apoc/agg/CollAggregationTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/agg/GraphAggregationTest.java b/core/src/test/java/apoc/agg/GraphAggregationTest.java index ea012cbe96..7bd4101a9c 100644 --- a/core/src/test/java/apoc/agg/GraphAggregationTest.java +++ b/core/src/test/java/apoc/agg/GraphAggregationTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/agg/MaxAndMinItemsAggregationTest.java b/core/src/test/java/apoc/agg/MaxAndMinItemsAggregationTest.java index 61565b724d..572a6fedde 100644 --- a/core/src/test/java/apoc/agg/MaxAndMinItemsAggregationTest.java +++ b/core/src/test/java/apoc/agg/MaxAndMinItemsAggregationTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/agg/MedianTest.java b/core/src/test/java/apoc/agg/MedianTest.java index dfd181543e..f0c3e30692 100644 --- a/core/src/test/java/apoc/agg/MedianTest.java +++ b/core/src/test/java/apoc/agg/MedianTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/agg/PercentilesTest.java b/core/src/test/java/apoc/agg/PercentilesTest.java index 604bbba430..e12bf316cb 100644 --- a/core/src/test/java/apoc/agg/PercentilesTest.java +++ b/core/src/test/java/apoc/agg/PercentilesTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/agg/ProductAggregationTest.java b/core/src/test/java/apoc/agg/ProductAggregationTest.java index 5d0cbaa6e4..65e7c2a41c 100644 --- a/core/src/test/java/apoc/agg/ProductAggregationTest.java +++ b/core/src/test/java/apoc/agg/ProductAggregationTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/agg/StatisticsTest.java b/core/src/test/java/apoc/agg/StatisticsTest.java index 22f79dd25c..307bfa9b39 100644 --- a/core/src/test/java/apoc/agg/StatisticsTest.java +++ b/core/src/test/java/apoc/agg/StatisticsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.agg; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/algo/CoverTest.java b/core/src/test/java/apoc/algo/CoverTest.java index 113b32f528..93645b087e 100644 --- a/core/src/test/java/apoc/algo/CoverTest.java +++ b/core/src/test/java/apoc/algo/CoverTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.algo; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/algo/PathFindingTest.java b/core/src/test/java/apoc/algo/PathFindingTest.java index 59ebfd2f9c..837adc55e1 100644 --- a/core/src/test/java/apoc/algo/PathFindingTest.java +++ b/core/src/test/java/apoc/algo/PathFindingTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.algo; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/atomic/AtomicTest.java b/core/src/test/java/apoc/atomic/AtomicTest.java index 9358025606..b6217700a7 100644 --- a/core/src/test/java/apoc/atomic/AtomicTest.java +++ b/core/src/test/java/apoc/atomic/AtomicTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.atomic; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/bitwise/BitwiseOperationsTest.java b/core/src/test/java/apoc/bitwise/BitwiseOperationsTest.java index ef59c11bc3..e093257c12 100644 --- a/core/src/test/java/apoc/bitwise/BitwiseOperationsTest.java +++ b/core/src/test/java/apoc/bitwise/BitwiseOperationsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.bitwise; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/coll/CollTest.java b/core/src/test/java/apoc/coll/CollTest.java index 2a7330eb81..cd4dececf3 100644 --- a/core/src/test/java/apoc/coll/CollTest.java +++ b/core/src/test/java/apoc/coll/CollTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.coll; import apoc.convert.Json; diff --git a/core/src/test/java/apoc/convert/ConvertJsonTest.java b/core/src/test/java/apoc/convert/ConvertJsonTest.java index 1ca9668d56..9791d41f62 100644 --- a/core/src/test/java/apoc/convert/ConvertJsonTest.java +++ b/core/src/test/java/apoc/convert/ConvertJsonTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.convert; import apoc.util.MapUtil; diff --git a/core/src/test/java/apoc/convert/ConvertTest.java b/core/src/test/java/apoc/convert/ConvertTest.java index d3eb2291cd..13baf9dce7 100644 --- a/core/src/test/java/apoc/convert/ConvertTest.java +++ b/core/src/test/java/apoc/convert/ConvertTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.convert; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/create/CreateTest.java b/core/src/test/java/apoc/create/CreateTest.java index f685b2f8a2..4f2d61cc86 100644 --- a/core/src/test/java/apoc/create/CreateTest.java +++ b/core/src/test/java/apoc/create/CreateTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.create; import apoc.coll.Coll; diff --git a/core/src/test/java/apoc/cypher/CypherInitializerTest.java b/core/src/test/java/apoc/cypher/CypherInitializerTest.java index 8615f5fe82..58101d7a34 100644 --- a/core/src/test/java/apoc/cypher/CypherInitializerTest.java +++ b/core/src/test/java/apoc/cypher/CypherInitializerTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.cypher; import apoc.ApocExtensionFactory; diff --git a/core/src/test/java/apoc/cypher/CypherIsVersionDifferentTest.java b/core/src/test/java/apoc/cypher/CypherIsVersionDifferentTest.java index 2c25fa9411..755c3be069 100644 --- a/core/src/test/java/apoc/cypher/CypherIsVersionDifferentTest.java +++ b/core/src/test/java/apoc/cypher/CypherIsVersionDifferentTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.cypher; import org.junit.Test; diff --git a/core/src/test/java/apoc/cypher/CypherTest.java b/core/src/test/java/apoc/cypher/CypherTest.java index 8160ce9392..6ef7e026c0 100644 --- a/core/src/test/java/apoc/cypher/CypherTest.java +++ b/core/src/test/java/apoc/cypher/CypherTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.cypher; import apoc.text.Strings; diff --git a/core/src/test/java/apoc/data/url/ExtractURLTest.java b/core/src/test/java/apoc/data/url/ExtractURLTest.java index 7286c0ae77..7ab29589ed 100644 --- a/core/src/test/java/apoc/data/url/ExtractURLTest.java +++ b/core/src/test/java/apoc/data/url/ExtractURLTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.data.url; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/date/DateTest.java b/core/src/test/java/apoc/date/DateTest.java index 5449303d01..d9daa88a98 100644 --- a/core/src/test/java/apoc/date/DateTest.java +++ b/core/src/test/java/apoc/date/DateTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.date; import apoc.temporal.TemporalProcedures; diff --git a/core/src/test/java/apoc/diff/DiffTest.java b/core/src/test/java/apoc/diff/DiffTest.java index 17b4c6128a..708e89bfc5 100644 --- a/core/src/test/java/apoc/diff/DiffTest.java +++ b/core/src/test/java/apoc/diff/DiffTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.diff; import apoc.create.Create; diff --git a/core/src/test/java/apoc/example/ExamplesTest.java b/core/src/test/java/apoc/example/ExamplesTest.java index 10c0582ba8..9bab7ee43d 100644 --- a/core/src/test/java/apoc/example/ExamplesTest.java +++ b/core/src/test/java/apoc/example/ExamplesTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.example; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/export/BigGraphTest.java b/core/src/test/java/apoc/export/BigGraphTest.java index 6d7bed1ce8..c6e30fc6ef 100644 --- a/core/src/test/java/apoc/export/BigGraphTest.java +++ b/core/src/test/java/apoc/export/BigGraphTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export; import apoc.export.csv.ExportCSV; diff --git a/core/src/test/java/apoc/export/ExportCoreSecurityTest.java b/core/src/test/java/apoc/export/ExportCoreSecurityTest.java index 258ec6ad0b..231c8ce99b 100644 --- a/core/src/test/java/apoc/export/ExportCoreSecurityTest.java +++ b/core/src/test/java/apoc/export/ExportCoreSecurityTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export; import apoc.ApocConfig; diff --git a/core/src/test/java/apoc/export/ExportStreamsStatementsTest.java b/core/src/test/java/apoc/export/ExportStreamsStatementsTest.java index f1a04d491c..2fea945158 100644 --- a/core/src/test/java/apoc/export/ExportStreamsStatementsTest.java +++ b/core/src/test/java/apoc/export/ExportStreamsStatementsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export; import apoc.export.csv.ExportCSV; diff --git a/core/src/test/java/apoc/export/arrow/ArrowTest.java b/core/src/test/java/apoc/export/arrow/ArrowTest.java index ac14771c0b..68fc176ef0 100644 --- a/core/src/test/java/apoc/export/arrow/ArrowTest.java +++ b/core/src/test/java/apoc/export/arrow/ArrowTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.graph.Graphs; diff --git a/core/src/test/java/apoc/export/arrow/ExportArrowSecurityTest.java b/core/src/test/java/apoc/export/arrow/ExportArrowSecurityTest.java index e61d50ab80..3cebe2a1ba 100644 --- a/core/src/test/java/apoc/export/arrow/ExportArrowSecurityTest.java +++ b/core/src/test/java/apoc/export/arrow/ExportArrowSecurityTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.arrow; import apoc.export.ExportCoreSecurityTest; diff --git a/core/src/test/java/apoc/export/csv/CsvHeaderFieldTests.java b/core/src/test/java/apoc/export/csv/CsvHeaderFieldTests.java index ad3ba875e0..7ff13baecd 100644 --- a/core/src/test/java/apoc/export/csv/CsvHeaderFieldTests.java +++ b/core/src/test/java/apoc/export/csv/CsvHeaderFieldTests.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.meta.Types; diff --git a/core/src/test/java/apoc/export/csv/ExportCsvNeo4jAdminTest.java b/core/src/test/java/apoc/export/csv/ExportCsvNeo4jAdminTest.java index f505011e20..24ba68a5ed 100644 --- a/core/src/test/java/apoc/export/csv/ExportCsvNeo4jAdminTest.java +++ b/core/src/test/java/apoc/export/csv/ExportCsvNeo4jAdminTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.graph.Graphs; diff --git a/core/src/test/java/apoc/export/csv/ExportCsvTest.java b/core/src/test/java/apoc/export/csv/ExportCsvTest.java index dc5cc9bd1b..2cb8144198 100644 --- a/core/src/test/java/apoc/export/csv/ExportCsvTest.java +++ b/core/src/test/java/apoc/export/csv/ExportCsvTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.csv.CsvTestUtil; diff --git a/core/src/test/java/apoc/export/csv/ImportCsvLdbcTest.java b/core/src/test/java/apoc/export/csv/ImportCsvLdbcTest.java index ae3a3e4a21..b43dd6bb2d 100644 --- a/core/src/test/java/apoc/export/csv/ImportCsvLdbcTest.java +++ b/core/src/test/java/apoc/export/csv/ImportCsvLdbcTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.csv.CsvTestUtil; diff --git a/core/src/test/java/apoc/export/csv/ImportCsvTest.java b/core/src/test/java/apoc/export/csv/ImportCsvTest.java index 9ef463ddf8..54781eb48f 100644 --- a/core/src/test/java/apoc/export/csv/ImportCsvTest.java +++ b/core/src/test/java/apoc/export/csv/ImportCsvTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.csv; import apoc.csv.CsvTestUtil; diff --git a/core/src/test/java/apoc/export/cypher/ExportCypherMultiRelTest.java b/core/src/test/java/apoc/export/cypher/ExportCypherMultiRelTest.java index 1950cea1fd..8d993d184a 100644 --- a/core/src/test/java/apoc/export/cypher/ExportCypherMultiRelTest.java +++ b/core/src/test/java/apoc/export/cypher/ExportCypherMultiRelTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher; import apoc.cypher.Cypher; diff --git a/core/src/test/java/apoc/export/cypher/ExportCypherTest.java b/core/src/test/java/apoc/export/cypher/ExportCypherTest.java index c066e3f117..4a6c86f700 100644 --- a/core/src/test/java/apoc/export/cypher/ExportCypherTest.java +++ b/core/src/test/java/apoc/export/cypher/ExportCypherTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher; import apoc.export.util.ExportConfig; diff --git a/core/src/test/java/apoc/export/cypher/ExportCypherTestUtils.java b/core/src/test/java/apoc/export/cypher/ExportCypherTestUtils.java index e79a1cb44c..434c3a9230 100644 --- a/core/src/test/java/apoc/export/cypher/ExportCypherTestUtils.java +++ b/core/src/test/java/apoc/export/cypher/ExportCypherTestUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.cypher; import static apoc.ApocConfig.APOC_EXPORT_FILE_ENABLED; diff --git a/core/src/test/java/apoc/export/graphml/ExportGraphMLTest.java b/core/src/test/java/apoc/export/graphml/ExportGraphMLTest.java index b4fb6e8d4a..883ce47195 100644 --- a/core/src/test/java/apoc/export/graphml/ExportGraphMLTest.java +++ b/core/src/test/java/apoc/export/graphml/ExportGraphMLTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.graphml; import apoc.util.BinaryTestUtil; diff --git a/core/src/test/java/apoc/export/graphml/ExportGraphMLTestUtil.java b/core/src/test/java/apoc/export/graphml/ExportGraphMLTestUtil.java index 7bb3b52a05..41e535a469 100644 --- a/core/src/test/java/apoc/export/graphml/ExportGraphMLTestUtil.java +++ b/core/src/test/java/apoc/export/graphml/ExportGraphMLTestUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.graphml; import apoc.graph.Graphs; diff --git a/core/src/test/java/apoc/export/json/ExportJsonTest.java b/core/src/test/java/apoc/export/json/ExportJsonTest.java index 92f2d33bf9..7e90f916c1 100644 --- a/core/src/test/java/apoc/export/json/ExportJsonTest.java +++ b/core/src/test/java/apoc/export/json/ExportJsonTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.json; import apoc.graph.Graphs; diff --git a/core/src/test/java/apoc/export/json/ImportJsonTest.java b/core/src/test/java/apoc/export/json/ImportJsonTest.java index 3475afa050..76ee5007e1 100644 --- a/core/src/test/java/apoc/export/json/ImportJsonTest.java +++ b/core/src/test/java/apoc/export/json/ImportJsonTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.export.json; import apoc.schema.Schemas; diff --git a/core/src/test/java/apoc/graph/GraphsTest.java b/core/src/test/java/apoc/graph/GraphsTest.java index 4880b5b170..15ba782068 100644 --- a/core/src/test/java/apoc/graph/GraphsTest.java +++ b/core/src/test/java/apoc/graph/GraphsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.graph; import apoc.graph.util.GraphsConfig; diff --git a/core/src/test/java/apoc/hashing/FingerprintingTest.java b/core/src/test/java/apoc/hashing/FingerprintingTest.java index 508dfe8ba4..ac25f971df 100644 --- a/core/src/test/java/apoc/hashing/FingerprintingTest.java +++ b/core/src/test/java/apoc/hashing/FingerprintingTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.hashing; import apoc.coll.Coll; diff --git a/core/src/test/java/apoc/help/HelpTest.java b/core/src/test/java/apoc/help/HelpTest.java index 9a2ea4f391..fad3b1af07 100644 --- a/core/src/test/java/apoc/help/HelpTest.java +++ b/core/src/test/java/apoc/help/HelpTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.help; import apoc.bitwise.BitwiseOperations; diff --git a/core/src/test/java/apoc/index/SchemaIndexTest.java b/core/src/test/java/apoc/index/SchemaIndexTest.java index 1ca88239a9..cee7f7e7e5 100644 --- a/core/src/test/java/apoc/index/SchemaIndexTest.java +++ b/core/src/test/java/apoc/index/SchemaIndexTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.index; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/label/LabelTest.java b/core/src/test/java/apoc/label/LabelTest.java index 03e0a9e496..36be49311d 100644 --- a/core/src/test/java/apoc/label/LabelTest.java +++ b/core/src/test/java/apoc/label/LabelTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.label; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/load/LoadCoreSecurityTest.java b/core/src/test/java/apoc/load/LoadCoreSecurityTest.java index 7edc0bf57a..f242d0379b 100644 --- a/core/src/test/java/apoc/load/LoadCoreSecurityTest.java +++ b/core/src/test/java/apoc/load/LoadCoreSecurityTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import apoc.ApocConfig; diff --git a/core/src/test/java/apoc/load/LoadJsonTest.java b/core/src/test/java/apoc/load/LoadJsonTest.java index ee4d2e7a2d..97c9d26bdc 100644 --- a/core/src/test/java/apoc/load/LoadJsonTest.java +++ b/core/src/test/java/apoc/load/LoadJsonTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import apoc.util.CompressionAlgo; diff --git a/core/src/test/java/apoc/load/SimpleXmlTest.java b/core/src/test/java/apoc/load/SimpleXmlTest.java index d77dc7dc71..4ca9629e71 100644 --- a/core/src/test/java/apoc/load/SimpleXmlTest.java +++ b/core/src/test/java/apoc/load/SimpleXmlTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import org.hamcrest.MatcherAssert; diff --git a/core/src/test/java/apoc/load/SkipWhitespaceInputStreamTest.java b/core/src/test/java/apoc/load/SkipWhitespaceInputStreamTest.java index f46c29e975..205ee7b0c2 100644 --- a/core/src/test/java/apoc/load/SkipWhitespaceInputStreamTest.java +++ b/core/src/test/java/apoc/load/SkipWhitespaceInputStreamTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import org.apache.commons.io.IOUtils; diff --git a/core/src/test/java/apoc/load/XmlTest.java b/core/src/test/java/apoc/load/XmlTest.java index 615365c743..730fee1472 100644 --- a/core/src/test/java/apoc/load/XmlTest.java +++ b/core/src/test/java/apoc/load/XmlTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load; import apoc.util.CompressionAlgo; diff --git a/core/src/test/java/apoc/load/relative/LoadRelativePathTest.java b/core/src/test/java/apoc/load/relative/LoadRelativePathTest.java index c285c52df4..4d7452143c 100644 --- a/core/src/test/java/apoc/load/relative/LoadRelativePathTest.java +++ b/core/src/test/java/apoc/load/relative/LoadRelativePathTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.load.relative; import apoc.load.LoadJson; diff --git a/core/src/test/java/apoc/lock/LockTest.java b/core/src/test/java/apoc/lock/LockTest.java index da3952fc0b..23845d9c6f 100644 --- a/core/src/test/java/apoc/lock/LockTest.java +++ b/core/src/test/java/apoc/lock/LockTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.lock; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/log/Neo4jLogStreamTest.java b/core/src/test/java/apoc/log/Neo4jLogStreamTest.java index d132dbbd0e..9ad4b6153a 100644 --- a/core/src/test/java/apoc/log/Neo4jLogStreamTest.java +++ b/core/src/test/java/apoc/log/Neo4jLogStreamTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.log; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/map/MapsTest.java b/core/src/test/java/apoc/map/MapsTest.java index 640e1eadd6..a6928e637b 100644 --- a/core/src/test/java/apoc/map/MapsTest.java +++ b/core/src/test/java/apoc/map/MapsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.map; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/math/MathsTest.java b/core/src/test/java/apoc/math/MathsTest.java index a3efcc63a9..deed5672e5 100644 --- a/core/src/test/java/apoc/math/MathsTest.java +++ b/core/src/test/java/apoc/math/MathsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.math; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/math/RegressionTest.java b/core/src/test/java/apoc/math/RegressionTest.java index 7a785f8393..55bf6e4f68 100644 --- a/core/src/test/java/apoc/math/RegressionTest.java +++ b/core/src/test/java/apoc/math/RegressionTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.math; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/merge/MergeTest.java b/core/src/test/java/apoc/merge/MergeTest.java index 4df01f5d8f..e6290d2b87 100644 --- a/core/src/test/java/apoc/merge/MergeTest.java +++ b/core/src/test/java/apoc/merge/MergeTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.merge; import apoc.util.MapUtil; diff --git a/core/src/test/java/apoc/meta/MetaTest.java b/core/src/test/java/apoc/meta/MetaTest.java index 0613d14943..bcede8b61c 100644 --- a/core/src/test/java/apoc/meta/MetaTest.java +++ b/core/src/test/java/apoc/meta/MetaTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.meta; import apoc.graph.Graphs; diff --git a/core/src/test/java/apoc/neighbors/NeighborsTest.java b/core/src/test/java/apoc/neighbors/NeighborsTest.java index 9b05d767f8..9216c99f58 100644 --- a/core/src/test/java/apoc/neighbors/NeighborsTest.java +++ b/core/src/test/java/apoc/neighbors/NeighborsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.neighbors; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/nodes/GroupingTest.java b/core/src/test/java/apoc/nodes/GroupingTest.java index b57f3709ba..b66cf43a9c 100644 --- a/core/src/test/java/apoc/nodes/GroupingTest.java +++ b/core/src/test/java/apoc/nodes/GroupingTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.nodes; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/nodes/NodesTest.java b/core/src/test/java/apoc/nodes/NodesTest.java index ec4f7a12e0..1267cb09dc 100644 --- a/core/src/test/java/apoc/nodes/NodesTest.java +++ b/core/src/test/java/apoc/nodes/NodesTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.nodes; import apoc.create.Create; diff --git a/core/src/test/java/apoc/number/ArabicRomanTest.java b/core/src/test/java/apoc/number/ArabicRomanTest.java index eba08852bb..9c033b1a92 100644 --- a/core/src/test/java/apoc/number/ArabicRomanTest.java +++ b/core/src/test/java/apoc/number/ArabicRomanTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.number; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/number/NumbersTest.java b/core/src/test/java/apoc/number/NumbersTest.java index 4980e6c431..1693a59be1 100644 --- a/core/src/test/java/apoc/number/NumbersTest.java +++ b/core/src/test/java/apoc/number/NumbersTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.number; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/number/exact/ExactTest.java b/core/src/test/java/apoc/number/exact/ExactTest.java index aa4347a286..02ff52bc32 100644 --- a/core/src/test/java/apoc/number/exact/ExactTest.java +++ b/core/src/test/java/apoc/number/exact/ExactTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.number.exact; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/path/ExpandPathTest.java b/core/src/test/java/apoc/path/ExpandPathTest.java index b71a71516d..ce2fb9c9f5 100644 --- a/core/src/test/java/apoc/path/ExpandPathTest.java +++ b/core/src/test/java/apoc/path/ExpandPathTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.util.MapUtil; diff --git a/core/src/test/java/apoc/path/LabelSequenceTest.java b/core/src/test/java/apoc/path/LabelSequenceTest.java index 2fe91671d4..932f0f1d03 100644 --- a/core/src/test/java/apoc/path/LabelSequenceTest.java +++ b/core/src/test/java/apoc/path/LabelSequenceTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/path/NodeFilterTest.java b/core/src/test/java/apoc/path/NodeFilterTest.java index 94df5d79e4..bb269e8b57 100644 --- a/core/src/test/java/apoc/path/NodeFilterTest.java +++ b/core/src/test/java/apoc/path/NodeFilterTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/path/PathsTest.java b/core/src/test/java/apoc/path/PathsTest.java index a8b104c940..f2a8d10a8d 100644 --- a/core/src/test/java/apoc/path/PathsTest.java +++ b/core/src/test/java/apoc/path/PathsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/path/RelSequenceTest.java b/core/src/test/java/apoc/path/RelSequenceTest.java index 6a12a43870..7113b01c9a 100644 --- a/core/src/test/java/apoc/path/RelSequenceTest.java +++ b/core/src/test/java/apoc/path/RelSequenceTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/path/SequenceTest.java b/core/src/test/java/apoc/path/SequenceTest.java index f0a8ee4379..ef1ff48d28 100644 --- a/core/src/test/java/apoc/path/SequenceTest.java +++ b/core/src/test/java/apoc/path/SequenceTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/path/SubgraphTest.java b/core/src/test/java/apoc/path/SubgraphTest.java index 8aa4acf1a2..b2df197215 100644 --- a/core/src/test/java/apoc/path/SubgraphTest.java +++ b/core/src/test/java/apoc/path/SubgraphTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.path; import apoc.algo.Cover; diff --git a/core/src/test/java/apoc/periodic/BatchModeTest.java b/core/src/test/java/apoc/periodic/BatchModeTest.java index f6f3bd5be0..4a3ce79352 100644 --- a/core/src/test/java/apoc/periodic/BatchModeTest.java +++ b/core/src/test/java/apoc/periodic/BatchModeTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.periodic; import org.junit.Test; diff --git a/core/src/test/java/apoc/periodic/PeriodicTest.java b/core/src/test/java/apoc/periodic/PeriodicTest.java index 3eb051607a..3b3e7f5ce2 100644 --- a/core/src/test/java/apoc/periodic/PeriodicTest.java +++ b/core/src/test/java/apoc/periodic/PeriodicTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.periodic; import apoc.cypher.Cypher; diff --git a/core/src/test/java/apoc/periodic/PeriodicUtilsTest.java b/core/src/test/java/apoc/periodic/PeriodicUtilsTest.java index 4403648f9f..0f60485de9 100644 --- a/core/src/test/java/apoc/periodic/PeriodicUtilsTest.java +++ b/core/src/test/java/apoc/periodic/PeriodicUtilsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.periodic; import org.apache.commons.lang3.tuple.Pair; diff --git a/core/src/test/java/apoc/refactor/CloneSubgraphTest.java b/core/src/test/java/apoc/refactor/CloneSubgraphTest.java index ad02f654f7..48b4d4ce5e 100644 --- a/core/src/test/java/apoc/refactor/CloneSubgraphTest.java +++ b/core/src/test/java/apoc/refactor/CloneSubgraphTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor; import apoc.algo.Cover; diff --git a/core/src/test/java/apoc/refactor/GraphRefactoringTest.java b/core/src/test/java/apoc/refactor/GraphRefactoringTest.java index b57dabb870..6a4c812372 100644 --- a/core/src/test/java/apoc/refactor/GraphRefactoringTest.java +++ b/core/src/test/java/apoc/refactor/GraphRefactoringTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor; import apoc.util.ArrayBackedList; diff --git a/core/src/test/java/apoc/refactor/rename/RenameTest.java b/core/src/test/java/apoc/refactor/rename/RenameTest.java index 9855ae09f5..0d37a9b63a 100644 --- a/core/src/test/java/apoc/refactor/rename/RenameTest.java +++ b/core/src/test/java/apoc/refactor/rename/RenameTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor.rename; import apoc.coll.Coll; diff --git a/core/src/test/java/apoc/refactor/util/PropertiesManagerTest.java b/core/src/test/java/apoc/refactor/util/PropertiesManagerTest.java index d7373c33b8..17361c3428 100644 --- a/core/src/test/java/apoc/refactor/util/PropertiesManagerTest.java +++ b/core/src/test/java/apoc/refactor/util/PropertiesManagerTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.refactor.util; import apoc.refactor.GraphRefactoring; diff --git a/core/src/test/java/apoc/schema/SchemasTest.java b/core/src/test/java/apoc/schema/SchemasTest.java index e7fe82ec8d..bf2e43345d 100644 --- a/core/src/test/java/apoc/schema/SchemasTest.java +++ b/core/src/test/java/apoc/schema/SchemasTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.schema; import apoc.result.AssertSchemaResult; diff --git a/core/src/test/java/apoc/scoring/ScoringTest.java b/core/src/test/java/apoc/scoring/ScoringTest.java index 87cdf490a2..85281bd27b 100644 --- a/core/src/test/java/apoc/scoring/ScoringTest.java +++ b/core/src/test/java/apoc/scoring/ScoringTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.scoring; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/search/ParallelNodeSearchTest.java b/core/src/test/java/apoc/search/ParallelNodeSearchTest.java index 43d6999f5c..faa75863bd 100644 --- a/core/src/test/java/apoc/search/ParallelNodeSearchTest.java +++ b/core/src/test/java/apoc/search/ParallelNodeSearchTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.search; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/spatial/DistanceTest.java b/core/src/test/java/apoc/spatial/DistanceTest.java index ff64bca0f9..2ad40b645f 100644 --- a/core/src/test/java/apoc/spatial/DistanceTest.java +++ b/core/src/test/java/apoc/spatial/DistanceTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.spatial; import apoc.result.DistancePathResult; diff --git a/core/src/test/java/apoc/spatial/GeocodeTest.java b/core/src/test/java/apoc/spatial/GeocodeTest.java index 0b13a39afb..35276a87a8 100755 --- a/core/src/test/java/apoc/spatial/GeocodeTest.java +++ b/core/src/test/java/apoc/spatial/GeocodeTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.spatial; import apoc.util.JsonUtil; diff --git a/core/src/test/java/apoc/spatial/SpatialTest.java b/core/src/test/java/apoc/spatial/SpatialTest.java index 63bca3e4fd..f04b150f86 100644 --- a/core/src/test/java/apoc/spatial/SpatialTest.java +++ b/core/src/test/java/apoc/spatial/SpatialTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.spatial; import apoc.date.Date; diff --git a/core/src/test/java/apoc/stats/DegreeDistributionTest.java b/core/src/test/java/apoc/stats/DegreeDistributionTest.java index 0302c81a2d..612efff1bb 100644 --- a/core/src/test/java/apoc/stats/DegreeDistributionTest.java +++ b/core/src/test/java/apoc/stats/DegreeDistributionTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.stats; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/temporal/TemporalProceduresTest.java b/core/src/test/java/apoc/temporal/TemporalProceduresTest.java index 37940f358f..b69c47c013 100644 --- a/core/src/test/java/apoc/temporal/TemporalProceduresTest.java +++ b/core/src/test/java/apoc/temporal/TemporalProceduresTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.temporal; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/text/PhoneticTest.java b/core/src/test/java/apoc/text/PhoneticTest.java index c7336a33c7..943adde77d 100644 --- a/core/src/test/java/apoc/text/PhoneticTest.java +++ b/core/src/test/java/apoc/text/PhoneticTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.text; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/text/SorensenDiceCoefficientTest.java b/core/src/test/java/apoc/text/SorensenDiceCoefficientTest.java index 427d122d14..5a6133ddd1 100644 --- a/core/src/test/java/apoc/text/SorensenDiceCoefficientTest.java +++ b/core/src/test/java/apoc/text/SorensenDiceCoefficientTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.text; import org.junit.Test; diff --git a/core/src/test/java/apoc/text/StringCleanTest.java b/core/src/test/java/apoc/text/StringCleanTest.java index 2e6e7c8337..2c98d6efd2 100644 --- a/core/src/test/java/apoc/text/StringCleanTest.java +++ b/core/src/test/java/apoc/text/StringCleanTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.text; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/text/StringsTest.java b/core/src/test/java/apoc/text/StringsTest.java index 0265f5b668..cbc12dda2e 100644 --- a/core/src/test/java/apoc/text/StringsTest.java +++ b/core/src/test/java/apoc/text/StringsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.text; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/trigger/TriggerDisabledTest.java b/core/src/test/java/apoc/trigger/TriggerDisabledTest.java index ba3820bad9..00eb4f4a31 100644 --- a/core/src/test/java/apoc/trigger/TriggerDisabledTest.java +++ b/core/src/test/java/apoc/trigger/TriggerDisabledTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.util.TestUtil; diff --git a/core/src/test/java/apoc/trigger/TriggerNewProceduresTest.java b/core/src/test/java/apoc/trigger/TriggerNewProceduresTest.java index e02a3777e0..2b00048d68 100644 --- a/core/src/test/java/apoc/trigger/TriggerNewProceduresTest.java +++ b/core/src/test/java/apoc/trigger/TriggerNewProceduresTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.nodes.Nodes; diff --git a/core/src/test/java/apoc/trigger/TriggerRestartTest.java b/core/src/test/java/apoc/trigger/TriggerRestartTest.java index 2931fca2d4..0416b95c7f 100644 --- a/core/src/test/java/apoc/trigger/TriggerRestartTest.java +++ b/core/src/test/java/apoc/trigger/TriggerRestartTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.ApocConfig; diff --git a/core/src/test/java/apoc/trigger/TriggerTest.java b/core/src/test/java/apoc/trigger/TriggerTest.java index 26c4b0a0dd..500cc07fad 100644 --- a/core/src/test/java/apoc/trigger/TriggerTest.java +++ b/core/src/test/java/apoc/trigger/TriggerTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import apoc.nodes.Nodes; diff --git a/core/src/test/java/apoc/util/UtilTest.java b/core/src/test/java/apoc/util/UtilTest.java index 2a9968593d..5084b30c16 100644 --- a/core/src/test/java/apoc/util/UtilTest.java +++ b/core/src/test/java/apoc/util/UtilTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.apache.commons.lang3.tuple.Pair; diff --git a/core/src/test/java/apoc/util/UtilsTest.java b/core/src/test/java/apoc/util/UtilsTest.java index dbd46d83db..2c9029193c 100644 --- a/core/src/test/java/apoc/util/UtilsTest.java +++ b/core/src/test/java/apoc/util/UtilsTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.hamcrest.Matchers; diff --git a/core/src/test/java/apoc/warmup/WarmupTest.java b/core/src/test/java/apoc/warmup/WarmupTest.java index 924d4e39c3..b4597aba93 100644 --- a/core/src/test/java/apoc/warmup/WarmupTest.java +++ b/core/src/test/java/apoc/warmup/WarmupTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.warmup; import apoc.util.TestUtil; diff --git a/core/src/test/resources/csv-inputs/ignore-relationships.csv.zz b/core/src/test/resources/csv-inputs/ignore-relationships.csv.zz new file mode 100644 index 0000000000000000000000000000000000000000..ce4b76ef6f21d558cb40bd961cfdd74020684115 GIT binary patch literal 59 zcmV-B0L1@zoU;lJaSRHH_jIYTa`kfo(FH~M1%_6h?tcD3u3(Olm8V|_mtl=jO=68P Rmr;#jO;U{+7XTIp5+)~P7-s+g literal 0 HcmV?d00001 diff --git a/it/src/test/java/apoc/it/common/UtilIT.java b/it/src/test/java/apoc/it/common/UtilIT.java index a588fad462..47a949eb6d 100644 --- a/it/src/test/java/apoc/it/common/UtilIT.java +++ b/it/src/test/java/apoc/it/common/UtilIT.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.common; import apoc.ApocConfig; diff --git a/it/src/test/java/apoc/it/core/ApocSplitTest.java b/it/src/test/java/apoc/it/core/ApocSplitTest.java index 9a8da6dcc0..f29e9662a4 100644 --- a/it/src/test/java/apoc/it/core/ApocSplitTest.java +++ b/it/src/test/java/apoc/it/core/ApocSplitTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.Neo4jContainerExtension; diff --git a/it/src/test/java/apoc/it/core/CollEnterpriseTest.java b/it/src/test/java/apoc/it/core/CollEnterpriseTest.java index 6bef29b969..0a883287f4 100644 --- a/it/src/test/java/apoc/it/core/CollEnterpriseTest.java +++ b/it/src/test/java/apoc/it/core/CollEnterpriseTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.Neo4jContainerExtension; import apoc.util.TestContainerUtil.ApocPackage; diff --git a/it/src/test/java/apoc/it/core/ExportCsvIT.java b/it/src/test/java/apoc/it/core/ExportCsvIT.java index 404995f6e2..e04ebcaf07 100644 --- a/it/src/test/java/apoc/it/core/ExportCsvIT.java +++ b/it/src/test/java/apoc/it/core/ExportCsvIT.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.Neo4jContainerExtension; import apoc.util.TestContainerUtil.ApocPackage; diff --git a/it/src/test/java/apoc/it/core/ExportCsvS3Test.java b/it/src/test/java/apoc/it/core/ExportCsvS3Test.java index 8e130dd451..99599f0b8d 100644 --- a/it/src/test/java/apoc/it/core/ExportCsvS3Test.java +++ b/it/src/test/java/apoc/it/core/ExportCsvS3Test.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.export.csv.ExportCSV; diff --git a/it/src/test/java/apoc/it/core/ExportCypherEnterpriseFeaturesTest.java b/it/src/test/java/apoc/it/core/ExportCypherEnterpriseFeaturesTest.java index efdb08b745..6633d54b5c 100644 --- a/it/src/test/java/apoc/it/core/ExportCypherEnterpriseFeaturesTest.java +++ b/it/src/test/java/apoc/it/core/ExportCypherEnterpriseFeaturesTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.Neo4jContainerExtension; import apoc.util.TestContainerUtil.ApocPackage; diff --git a/it/src/test/java/apoc/it/core/ExportCypherS3Test.java b/it/src/test/java/apoc/it/core/ExportCypherS3Test.java index b6fa420b47..3efddbaf7a 100644 --- a/it/src/test/java/apoc/it/core/ExportCypherS3Test.java +++ b/it/src/test/java/apoc/it/core/ExportCypherS3Test.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.export.cypher.ExportCypher; diff --git a/it/src/test/java/apoc/it/core/ExportGraphMLS3Test.java b/it/src/test/java/apoc/it/core/ExportGraphMLS3Test.java index f0eb30dec9..d759dfa2c7 100644 --- a/it/src/test/java/apoc/it/core/ExportGraphMLS3Test.java +++ b/it/src/test/java/apoc/it/core/ExportGraphMLS3Test.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.TestUtil; diff --git a/it/src/test/java/apoc/it/core/ExportJsonS3Test.java b/it/src/test/java/apoc/it/core/ExportJsonS3Test.java index ebaf4ea8ed..caa654bdf6 100644 --- a/it/src/test/java/apoc/it/core/ExportJsonS3Test.java +++ b/it/src/test/java/apoc/it/core/ExportJsonS3Test.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.export.json.ExportJson; diff --git a/it/src/test/java/apoc/it/core/GraphRefactoringEnterpriseTest.java b/it/src/test/java/apoc/it/core/GraphRefactoringEnterpriseTest.java index 7ecf2268f9..254c60d426 100644 --- a/it/src/test/java/apoc/it/core/GraphRefactoringEnterpriseTest.java +++ b/it/src/test/java/apoc/it/core/GraphRefactoringEnterpriseTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.Neo4jContainerExtension; diff --git a/it/src/test/java/apoc/it/core/MetaEnterpriseFeaturesTest.java b/it/src/test/java/apoc/it/core/MetaEnterpriseFeaturesTest.java index 4b2c2735e1..8bb203d039 100644 --- a/it/src/test/java/apoc/it/core/MetaEnterpriseFeaturesTest.java +++ b/it/src/test/java/apoc/it/core/MetaEnterpriseFeaturesTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.Neo4jContainerExtension; import apoc.util.TestContainerUtil.ApocPackage; diff --git a/it/src/test/java/apoc/it/core/SchemasEnterpriseFeaturesTest.java b/it/src/test/java/apoc/it/core/SchemasEnterpriseFeaturesTest.java index 2333ebf8cd..df23005247 100644 --- a/it/src/test/java/apoc/it/core/SchemasEnterpriseFeaturesTest.java +++ b/it/src/test/java/apoc/it/core/SchemasEnterpriseFeaturesTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.result.AssertSchemaResult; diff --git a/it/src/test/java/apoc/it/core/StartupTest.java b/it/src/test/java/apoc/it/core/StartupTest.java index e3cc2fd714..2946212d00 100644 --- a/it/src/test/java/apoc/it/core/StartupTest.java +++ b/it/src/test/java/apoc/it/core/StartupTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.ApocSignatures; import apoc.util.Neo4jContainerExtension; diff --git a/it/src/test/java/apoc/it/core/TriggerClusterRoutingTest.java b/it/src/test/java/apoc/it/core/TriggerClusterRoutingTest.java index 48d6fa67cd..a7a1830677 100644 --- a/it/src/test/java/apoc/it/core/TriggerClusterRoutingTest.java +++ b/it/src/test/java/apoc/it/core/TriggerClusterRoutingTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.Neo4jContainerExtension; import apoc.util.TestContainerUtil; diff --git a/it/src/test/java/apoc/it/core/TriggerEnterpriseFeaturesTest.java b/it/src/test/java/apoc/it/core/TriggerEnterpriseFeaturesTest.java index ecfc5e9fae..cd1de4eb7e 100644 --- a/it/src/test/java/apoc/it/core/TriggerEnterpriseFeaturesTest.java +++ b/it/src/test/java/apoc/it/core/TriggerEnterpriseFeaturesTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.Neo4jContainerExtension; import apoc.util.TestContainerUtil; diff --git a/it/src/test/java/apoc/it/core/WarmupEnterpriseTest.java b/it/src/test/java/apoc/it/core/WarmupEnterpriseTest.java index a66f0b4601..a7af593c95 100644 --- a/it/src/test/java/apoc/it/core/WarmupEnterpriseTest.java +++ b/it/src/test/java/apoc/it/core/WarmupEnterpriseTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.it.core; import apoc.util.Neo4jContainerExtension; import apoc.util.TestContainerUtil; diff --git a/licenses-3rdparties.gradle b/licenses-3rdparties.gradle new file mode 100644 index 0000000000..ca00248409 --- /dev/null +++ b/licenses-3rdparties.gradle @@ -0,0 +1,210 @@ +// All licenses that we accept, and their aliases +def allowList = [ + [name: 'BSD-2-Clause', url: 'http://opensource.org/licenses/BSD-2-Clause', aliases: [ + [name: 'BSD-style', url: 'http://www.opensource.org/licenses/bsd-license.php'], + [name: 'The BSD License', url: 'http://www.opensource.org/licenses/bsd-license.php'], + [name: 'BSD 2-Clause License'], + [name: 'BSD 2-Clause license', url: 'http://opensource.org/licenses/BSD-2-Clause'], + [name: 'BSD', url: 'http://www.jcraft.com/jzlib/LICENSE.txt'], + [name: 'Revised BSD', url: 'http://www.jcraft.com/jsch/LICENSE.txt'], + ]], + [name: 'BSD-3-Clause', url: 'http://opensource.org/licenses/BSD-3-Clause', aliases: [ + [name: 'BSD-3-Clause', url: 'https://asm.ow2.io/license.html'], + [name: 'The BSD 3-Clause License'], + [name: 'The 3-Clause BSD License'], + [name: '3-Clause BSD License'], + [name: 'BSD 3-Clause'], + [name: 'BSD 3 Clause'], + [name: 'BSD 3-clause'], + [name: 'BSD 3-Clause License'], + [name: 'BSD Licence 3'], + [name: 'BSD License 3'], + [name: 'New BSD License'], + [name: 'New BSD license'], + [name: 'The New BSD License'], + [name: 'BSD License', url: 'http://www.antlr.org/license.html'], + [name: 'BSD licence', url: 'http://antlr.org/license.html'], + [name: 'The BSD License', url: 'http://www.antlr.org/license.html'], + [name: 'BSD', url: 'http://asm.ow2.org/license.html'], + [name: 'BSD', url: 'http://www.jcraft.com/jsch/LICENSE.txt'], + [name: 'BSD', url: 'https://github.com/sbt/test-interface/blob/master/LICENSE'], + [name: 'BSD', url: 'LICENSE.txt'], + [name: 'BSD 3-Clause "New" or "Revised" License (BSD-3-Clause)'], + [name: '', url: 'http://asm.ow2.org/license.html'], + [name: 'BSD', url: 'http://asm.objectweb.org/license.html'], + ]], + [name: 'Apache-2.0', url: 'https://opensource.org/licenses/Apache-2.0', aliases: [ + [name: 'The Apache Software License, Version 2.0'], + [name: 'The Apache License, Version 2.0'], + [name: 'The Apache Software License, version 2.0'], + [name: 'Apache 2'], + [name: 'Apache v2'], + [name: 'Apache License, Version 2.0'], + [name: 'Apache License, Version 2'], + [name: 'Apache Software License - Version 2.0'], + [name: 'Apache License 2.0'], + [name: 'Apache License'], + [name: 'Apache 2.0'], + [name: 'Apache-2.0'], + [name: 'Apache 2.0 License'], + [name: 'ASL'], + [name: 'ASL 2.0'], + [name: 'the Apache License, ASL Version 2.0'], + [name: 'Apache License V2.0'], + [name: 'Apache License v2.0'], + [name: 'Apache License Version 2.0'], + [name: '', url: 'http://www.apache.org/licenses/LICENSE-2.0.txt'], + ]], + [name: 'MIT', url: 'https://opensource.org/licenses/MIT', aliases: [ + [name: 'MIT'], + [name: 'MIT license'], + [name: 'MIT License'], + [name: 'The MIT License'], + [name: 'Bouncy Castle Licence'], + [name: 'MIT-0', url: 'https://spdx.org/licenses/MIT-0.html'], + ]], + [name: 'Eclipse Distribution License - v 1.0', url: 'https://www.eclipse.org/licenses/edl-v10.html', aliases: [ + [name: 'Eclipse Distribution License - v 1.0', url: 'http://www.eclipse.org/org/documents/edl-v10.php'], + [name: 'EDL 1.0'], + ]], + [name: 'Eclipse Public License - v 1.0', url: 'https://www.eclipse.org/legal/epl-v10.html', aliases: [ + [name: 'Eclipse Public License 1.0'], + [name: 'EPL', url: 'http://www.eclipse.org/legal/epl-v10.html'] + ]], + [name: 'Eclipse Public License - v 2.0', url: 'http://www.eclipse.org/legal/epl-2.0.html', aliases: [ + [name: 'Eclipse Public License 2.0'], + [name: 'Eclipse Public License v2.0', url: 'https://www.eclipse.org/legal/epl-v20.html'], + [name: 'EPL 2.0', url: 'http://www.eclipse.org/legal/epl-2.0'], + [name: 'Eclipse Public License - v 2.0', url: 'https://www.eclipse.org/legal/epl-v20.html'] + ]], + [name: 'GNU General Public License (GPL), version 2, with the Classpath exception', url: 'http://openjdk.java.net/legal/gplv2+ce.html', aliases: [ + [name: 'GPL-2.0'], + [name: 'GPL'], + [name: 'GNU General Public License Version 2', url: 'http://www.gnu.org/copyleft/gpl.html'] + ]], + [name: 'GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1', url: 'https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html'], + [name: 'Public Domain, per Creative Commons CC0', url: 'http://creativecommons.org/publicdomain/zero/1.0/', aliases: [ + [name: 'CC0'], + [name: 'Public Domain'], + ]], + [name: 'MPL-2.0', url: 'https://www.mozilla.org/MPL/2.0/', aliases: [ + [name: 'Mozilla Public License Version 2.0'], + [name: 'Mozilla Public License, v. 2.0', url: 'http://mozilla.org/MPL/2.0/'], + ]], + [name: 'Common Development and Distribution License Version 1.0', aliases: [ + [name: 'COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0'] + ]], + [name: 'Common Development and Distribution License Version 1.1', aliases: [ + [name: 'CDDL1.1'], + [name: 'CDDL 1.1'], + [name: 'Common Development and Distribution License (CDDL), Version 1.1'], + [name: 'CDDL License', url: 'http://www.opensource.org/licenses/cddl1.php'] + ]], + [name: 'Common Development and Distribution License Version 1.1 and GNU General Public License, version 2 with the Classpath Exception', aliases: [ + [name: 'CDDL1.1-GPL2/CPE'], + [name: 'Dual license consisting of the CDDL v1.1 and GPL v2'], + [name: 'CDDL + GPLv2 with classpath exception'], + ]], + [name: 'The Go license', url: 'https://golang.org/LICENSE'], +] + +// Dependency license reporting +downloadLicenses { + dependencyConfiguration = 'runtimeClasspath' + // Add licenses to some libraries which don't declare their license inside the POM. Should be rechecked if the version is updated. + licenses = [ + 'javax.servlet.jsp:jsp-api:2.1' : license('Common Development and Distribution License Version 1.1', null), + ] + aliases = allowList.collectEntries { lic -> + def actual = license(lic.name, lic.url) + def alternatives = lic.aliases.collect { it.url ? license(it.name, it.url) : it.name } + [(actual): alternatives] + } +} + +tasks.downloadLicenses.ext.licenseToDependencyJson = { -> + def jsonDir = tasks.downloadLicenses.jsonDestination + def jsonFile = file("$jsonDir/license-dependency.json") + new groovy.json.JsonSlurper().parseText(jsonFile.text) +} + +tasks.downloadLicenses.ext.dependencyToLicenseJson = { -> + def jsonDir = tasks.downloadLicenses.jsonDestination + def jsonFile = file("$jsonDir/dependency-license.json") + new groovy.json.JsonSlurper().parseText(jsonFile.text) +} + +// Dependency license validation +tasks.register("validateLicenses") { + group = 'license' + description = 'Checks 3rd-party dependency licenses against an allowlist' + + dependsOn tasks.downloadLicenses + + var excludeNeo4jPattern = /^(org|com)\.neo4j.*/ + doLast { + def allowListedNames = allowList.collect { it.name } + tasks.downloadLicenses.dependencyToLicenseJson().dependencies + .findAll { dep -> !dep.name.matches(excludeNeo4jPattern) } + .findAll { dep -> allowListedNames.intersect(dep.licenses.collect { it.name }).isEmpty() } + .each { dep -> logger.error("In project ${project.name}: Could not find an allowed license for dependency '$dep.name'. Details: ${dep.toMapString()}") } + .each { dep -> throw new GradleException("The dependency '$dep.name' has no allowed license") } + } +} +tasks.check.dependsOn tasks.validateLicenses + +tasks.register("generateLicensesFiles") { + group = 'license' + description 'Generates a LICENSES and NOTICE file with 3rd-party dependency license information' + + dependsOn tasks.downloadLicenses, tasks.validateLicenses + + def licenseFile = "$tasks.downloadLicenses.jsonDestination/LICENSES.txt" + def noticesFile = "$tasks.downloadLicenses.jsonDestination/NOTICE.txt" + + ext.licensesFile = file(licenseFile) + ext.noticeFile = file(noticesFile) + outputs.file(ext.licensesFile) + outputs.file(ext.noticeFile) + doLast { + // LICENSES.txt + licensesFile.createNewFile() + licensesFile.text = rootProject.file("$publicDir/licenses/headers/LICENSES-header.txt").text + + tasks.downloadLicenses.licenseToDependencyJson().licences + .findAll { lic -> allowList.any { lic.name == it.name }} + .sort { it.name }.each { + licensesFile << '\n\n' + licensesFile << "------------------------------------------------------------------------------\n" + licensesFile << "$it.name\n" + it.dependencies.sort { it }.each { licensesFile << " $it\n" } + licensesFile << "------------------------------------------------------------------------------\n" + licensesFile << '\n' + licensesFile << rootProject.file("$project.rootDir/licenses/text/$it.name").text + } + + // NOTICE.txt + noticeFile.createNewFile() + noticeFile.text = rootProject.file("$publicDir/licenses/headers/NOTICE-header.txt").text + noticeFile << '\n\n' + noticeFile << "Third-party licenses\n" + noticeFile << "--------------------\n" + tasks.downloadLicenses.licenseToDependencyJson().licences.sort { it.name }.each { + noticeFile << '\n' + noticeFile << "$it.name\n" + it.dependencies.sort { it }.each { noticeFile << " $it\n" } + } + + + // Copy files to root project so they can be tracked + copy { + from licenseFile + into "$project.rootDir" + } + copy { + from noticesFile + into "$project.rootDir" + } + } +} +tasks.check.dependsOn tasks.generateLicensesFiles diff --git a/licenses-source-header.gradle b/licenses-source-header.gradle new file mode 100644 index 0000000000..46b832cb86 --- /dev/null +++ b/licenses-source-header.gradle @@ -0,0 +1,23 @@ +allprojects { proj -> + plugins.withType(JavaLibraryPlugin) { + proj.apply plugin: 'com.github.hierynomus.license' + + def sourceFileHeader = rootProject.file("${project.rootDir}/licenses/headers/source-header.txt") + // License header checking and insertion + license { + header = sourceFileHeader + // what comment style to use + mapping { + java = 'SLASHSTAR_STYLE' + } + // exclude 'test/resources/**' + // exclude 'main/resources/**' + include '**/*.java' + } + tasks.check.dependsOn tasks.license + + tasks.named("licenseTest").configure { + it.dependsOn("compileTestJava") + } + } +} diff --git a/licenses/headers/LICENSES-header.txt b/licenses/headers/LICENSES-header.txt new file mode 100644 index 0000000000..7e04617d1b --- /dev/null +++ b/licenses/headers/LICENSES-header.txt @@ -0,0 +1,2 @@ +This file contains the full license text of the included third party +libraries. For an overview of the licenses see the NOTICE.txt file. diff --git a/licenses/headers/NOTICE-header.txt b/licenses/headers/NOTICE-header.txt new file mode 100644 index 0000000000..ef40a4f202 --- /dev/null +++ b/licenses/headers/NOTICE-header.txt @@ -0,0 +1,22 @@ +Neo4j +Copyright © 2002-2023 Neo4j Sweden AB (referred to in this notice as "Neo4j") +[http://neo4j.com] + +This product includes software ("Software") developed by Neo4j. + +The copyright in the bundled Neo4j graph database (including the +Software) is owned by Neo4j. The Software developed and owned +by Neo4j is licensed under the GNU GENERAL PUBLIC LICENSE Version 3 +(http://www.fsf.org/licensing/licenses/gpl-3.0.html) ("GPL") +to all third parties and that license, as required by the GPL, is +included in the LICENSE.txt file. + +However, if you have executed an End User Software License and Services +Agreement or an OEM Software License and Support Services Agreement, or +another commercial license agreement with Neo4j or one of its +affiliates (each, a "Commercial Agreement"), the terms of the license in +such Commercial Agreement will supersede the GPL and you may use the +software solely pursuant to the terms of the relevant Commercial +Agreement. + +Full license texts are found in LICENSES.txt. diff --git a/licenses/headers/source-header.txt b/licenses/headers/source-header.txt new file mode 100644 index 0000000000..34b4157b6b --- /dev/null +++ b/licenses/headers/source-header.txt @@ -0,0 +1,16 @@ +Copyright (c) "Neo4j" +Neo4j Sweden AB [http://neo4j.com] + +This file is part of Neo4j. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/licenses/text/Apache-2.0 b/licenses/text/Apache-2.0 new file mode 100644 index 0000000000..f49a4e16e6 --- /dev/null +++ b/licenses/text/Apache-2.0 @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/licenses/text/BSD-2-Clause b/licenses/text/BSD-2-Clause new file mode 100644 index 0000000000..4432e70b4a --- /dev/null +++ b/licenses/text/BSD-2-Clause @@ -0,0 +1,22 @@ +Copyright + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/licenses/text/BSD-3-Clause b/licenses/text/BSD-3-Clause new file mode 100644 index 0000000000..e6690fd1f0 --- /dev/null +++ b/licenses/text/BSD-3-Clause @@ -0,0 +1,24 @@ +Copyright (c) , +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/licenses/text/Common Development and Distribution License Version 1.0 b/licenses/text/Common Development and Distribution License Version 1.0 new file mode 100644 index 0000000000..f274fb5ad0 --- /dev/null +++ b/licenses/text/Common Development and Distribution License Version 1.0 @@ -0,0 +1,377 @@ +COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 + +1. Definitions. + + 1.1. "Contributor" means each individual or entity that creates + or contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Software, prior Modifications used by a Contributor (if any), + and the Modifications made by that particular Contributor. + + 1.3. "Covered Software" means (a) the Original Software, or (b) + Modifications, or (c) the combination of files containing + Original Software with files containing Modifications, in + each case including portions thereof. + + 1.4. "Executable" means the Covered Software in any form other + than Source Code. + + 1.5. "Initial Developer" means the individual or entity that first + makes Original Software available under this License. + + 1.6. "Larger Work" means a work which combines Covered Software or + portions thereof with code not governed by the terms of this + License. + + 1.7. "License" means this document. + + 1.8. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed + herein. + + 1.9. "Modifications" means the Source Code and Executable form of + any of the following: + + A. Any file that results from an addition to, deletion from or + modification of the contents of a file containing Original + Software or previous Modifications; + + B. Any new file that contains any part of the Original + Software or previous Modifications; or + + C. Any new file that is contributed or otherwise made + available under the terms of this License. + + 1.10. "Original Software" means the Source Code and Executable + form of computer software code that is originally released + under this License. + + 1.11. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, + process, and apparatus claims, in any patent Licensable by + grantor. + + 1.12. "Source Code" means (a) the common form of computer software + code in which modifications are made and (b) associated + documentation included in or with such code. + + 1.13. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms + of, this License. For legal entities, "You" includes any + entity which controls, is controlled by, or is under common + control with You. For purposes of this definition, + "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty + percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants. + + 2.1. The Initial Developer Grant. + + Conditioned upon Your compliance with Section 3.1 below and + subject to third party intellectual property claims, the Initial + Developer hereby grants You a world-wide, royalty-free, + non-exclusive license: + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer, to use, + reproduce, modify, display, perform, sublicense and + distribute the Original Software (or portions thereof), + with or without Modifications, and/or as part of a Larger + Work; and + + (b) under Patent Claims infringed by the making, using or + selling of Original Software, to make, have made, use, + practice, sell, and offer for sale, and/or otherwise + dispose of the Original Software (or portions thereof). + + (c) The licenses granted in Sections 2.1(a) and (b) are + effective on the date Initial Developer first distributes + or otherwise makes the Original Software available to a + third party under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: (1) for code that You delete from the Original + Software, or (2) for infringements caused by: (i) the + modification of the Original Software, or (ii) the + combination of the Original Software with other software + or devices. + + 2.2. Contributor Grant. + + Conditioned upon Your compliance with Section 3.1 below and + subject to third party intellectual property claims, each + Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Contributor to use, reproduce, + modify, display, perform, sublicense and distribute the + Modifications created by such Contributor (or portions + thereof), either on an unmodified basis, with other + Modifications, as Covered Software and/or as part of a + Larger Work; and + + (b) under Patent Claims infringed by the making, using, or + selling of Modifications made by that Contributor either + alone and/or in combination with its Contributor Version + (or portions of such combination), to make, use, sell, + offer for sale, have made, and/or otherwise dispose of: + (1) Modifications made by that Contributor (or portions + thereof); and (2) the combination of Modifications made by + that Contributor with its Contributor Version (or portions + of such combination). + + (c) The licenses granted in Sections 2.2(a) and 2.2(b) are + effective on the date Contributor first distributes or + otherwise makes the Modifications available to a third + party. + + (d) Notwithstanding Section 2.2(b) above, no patent license is + granted: (1) for any code that Contributor has deleted + from the Contributor Version; (2) for infringements caused + by: (i) third party modifications of Contributor Version, + or (ii) the combination of Modifications made by that + Contributor with other software (except as part of the + Contributor Version) or other devices; or (3) under Patent + Claims infringed by Covered Software in the absence of + Modifications made by that Contributor. + +3. Distribution Obligations. + + 3.1. Availability of Source Code. + + Any Covered Software that You distribute or otherwise make + available in Executable form must also be made available in Source + Code form and that Source Code form must be distributed only under + the terms of this License. You must include a copy of this + License with every copy of the Source Code form of the Covered + Software You distribute or otherwise make available. You must + inform recipients of any such Covered Software in Executable form + as to how they can obtain such Covered Software in Source Code + form in a reasonable manner on or through a medium customarily + used for software exchange. + + 3.2. Modifications. + + The Modifications that You create or to which You contribute are + governed by the terms of this License. You represent that You + believe Your Modifications are Your original creation(s) and/or + You have sufficient rights to grant the rights conveyed by this + License. + + 3.3. Required Notices. + + You must include a notice in each of Your Modifications that + identifies You as the Contributor of the Modification. You may + not remove or alter any copyright, patent or trademark notices + contained within the Covered Software, or any notices of licensing + or any descriptive text giving attribution to any Contributor or + the Initial Developer. + + 3.4. Application of Additional Terms. + + You may not offer or impose any terms on any Covered Software in + Source Code form that alters or restricts the applicable version + of this License or the recipients' rights hereunder. You may + choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of + Covered Software. However, you may do so only on Your own behalf, + and not on behalf of the Initial Developer or any Contributor. + You must make it absolutely clear that any such warranty, support, + indemnity or liability obligation is offered by You alone, and You + hereby agree to indemnify the Initial Developer and every + Contributor for any liability incurred by the Initial Developer or + such Contributor as a result of warranty, support, indemnity or + liability terms You offer. + + 3.5. Distribution of Executable Versions. + + You may distribute the Executable form of the Covered Software + under the terms of this License or under the terms of a license of + Your choice, which may contain terms different from this License, + provided that You are in compliance with the terms of this License + and that the license for the Executable form does not attempt to + limit or alter the recipient's rights in the Source Code form from + the rights set forth in this License. If You distribute the + Covered Software in Executable form under a different license, You + must make it absolutely clear that any terms which differ from + this License are offered by You alone, not by the Initial + Developer or Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred + by the Initial Developer or such Contributor as a result of any + such terms You offer. + + 3.6. Larger Works. + + You may create a Larger Work by combining Covered Software with + other code not governed by the terms of this License and + distribute the Larger Work as a single product. In such a case, + You must make sure the requirements of this License are fulfilled + for the Covered Software. + +4. Versions of the License. + + 4.1. New Versions. + + Sun Microsystems, Inc. is the initial license steward and may + publish revised and/or new versions of this License from time to + time. Each version will be given a distinguishing version number. + Except as provided in Section 4.3, no one other than the license + steward has the right to modify this License. + + 4.2. Effect of New Versions. + + You may always continue to use, distribute or otherwise make the + Covered Software available under the terms of the version of the + License under which You originally received the Covered Software. + If the Initial Developer includes a notice in the Original + Software prohibiting it from being distributed or otherwise made + available under any subsequent version of the License, You must + distribute and make the Covered Software available under the terms + of the version of the License under which You originally received + the Covered Software. Otherwise, You may also choose to use, + distribute or otherwise make the Covered Software available under + the terms of any subsequent version of the License published by + the license steward. + + 4.3. Modified Versions. + + When You are an Initial Developer and You want to create a new + license for Your Original Software, You may create and use a + modified version of this License if You: (a) rename the license + and remove any references to the name of the license steward + (except to note that the license differs from this License); and + (b) otherwise make it clear that the license contains terms which + differ from this License. + +5. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" + BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, + INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED + SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR + PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND + PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY + COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE + INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY + NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF + WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + +6. TERMINATION. + + 6.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to + cure such breach within 30 days of becoming aware of the breach. + Provisions which, by their nature, must remain in effect beyond + the termination of this License shall survive. + + 6.2. If You assert a patent infringement claim (excluding + declaratory judgment actions) against Initial Developer or a + Contributor (the Initial Developer or Contributor against whom You + assert such claim is referred to as "Participant") alleging that + the Participant Software (meaning the Contributor Version where + the Participant is a Contributor or the Original Software where + the Participant is the Initial Developer) directly or indirectly + infringes any patent, then any and all rights granted directly or + indirectly to You by such Participant, the Initial Developer (if + the Initial Developer is not the Participant) and all Contributors + under Sections 2.1 and/or 2.2 of this License shall, upon 60 days + notice from Participant terminate prospectively and automatically + at the expiration of such 60 day notice period, unless if within + such 60 day period You withdraw Your claim with respect to the + Participant Software against such Participant either unilaterally + or pursuant to a written agreement with Participant. + + 6.3. In the event of termination under Sections 6.1 or 6.2 above, + all end user licenses that have been validly granted by You or any + distributor hereunder prior to termination (excluding licenses + granted to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE + INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF + COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE + LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR + CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT + LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK + STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL + INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT + APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO + NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR + CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT + APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + + The Covered Software is a "commercial item," as that term is + defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial + computer software" (as that term is defined at 48 + C.F.R. 252.227-7014(a)(1)) and "commercial computer software + documentation" as such terms are used in 48 C.F.R. 12.212 + (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 + C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all + U.S. Government End Users acquire Covered Software with only those + rights set forth herein. This U.S. Government Rights clause is in + lieu of, and supersedes, any other FAR, DFAR, or other clause or + provision that addresses Government rights in computer software + under this License. + +9. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed + by the law of the jurisdiction specified in a notice contained + within the Original Software (except to the extent applicable law, + if any, provides otherwise), excluding such jurisdiction's + conflict-of-law provisions. Any litigation relating to this + License shall be subject to the jurisdiction of the courts located + in the jurisdiction and venue specified in a notice contained + within the Original Software, with the losing party responsible + for costs, including, without limitation, court costs and + reasonable attorneys' fees and expenses. The application of the + United Nations Convention on Contracts for the International Sale + of Goods is expressly excluded. Any law or regulation which + provides that the language of a contract shall be construed + against the drafter shall not apply to this License. You agree + that You alone are responsible for compliance with the United + States export administration regulations (and the export control + laws and regulation of any other countries) when You use, + distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or + indirectly, out of its utilization of rights under this License + and You agree to work with Initial Developer and Contributors to + distribute such responsibility on an equitable basis. Nothing + herein is intended or shall be deemed to constitute any admission + of liability. + +-------------------------------------------------------------------- + +NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND +DISTRIBUTION LICENSE (CDDL) + +For Covered Software in this distribution, this License shall +be governed by the laws of the State of California (excluding +conflict-of-law provisions). + +Any litigation relating to this License shall be subject to the +jurisdiction of the Federal Courts of the Northern District of +California and the state courts of the State of California, with +venue lying in Santa Clara County, California. \ No newline at end of file diff --git a/licenses/text/Common Development and Distribution License Version 1.1 b/licenses/text/Common Development and Distribution License Version 1.1 new file mode 100644 index 0000000000..dc988d8196 --- /dev/null +++ b/licenses/text/Common Development and Distribution License Version 1.1 @@ -0,0 +1,347 @@ +COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 + +1. Definitions. + + 1.1. "Contributor" means each individual or entity that creates or + contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Software, prior Modifications used by a Contributor (if any), and the + Modifications made by that particular Contributor. + + 1.3. "Covered Software" means (a) the Original Software, or (b) + Modifications, or (c) the combination of files containing Original + Software with files containing Modifications, in each case including + portions thereof. + + 1.4. "Executable" means the Covered Software in any form other than + Source Code. + + 1.5. "Initial Developer" means the individual or entity that first makes + Original Software available under this License. + + 1.6. "Larger Work" means a work which combines Covered Software or + portions thereof with code not governed by the terms of this License. + + 1.7. "License" means this document. + + 1.8. "Licensable" means having the right to grant, to the maximum extent + possible, whether at the time of the initial grant or subsequently + acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means the Source Code and Executable form of any of + the following: + + A. Any file that results from an addition to, deletion from or + modification of the contents of a file containing Original Software or + previous Modifications; + + B. Any new file that contains any part of the Original Software or + previous Modification; or + + C. Any new file that is contributed or otherwise made available under + the terms of this License. + + 1.10. "Original Software" means the Source Code and Executable form of + computer software code that is originally released under this License. + + 1.11. "Patent Claims" means any patent claim(s), now owned or hereafter + acquired, including without limitation, method, process, and apparatus + claims, in any patent Licensable by grantor. + + 1.12. "Source Code" means (a) the common form of computer software code + in which modifications are made and (b) associated documentation + included in or with such code. + + 1.13. "You" (or "Your") means an individual or a legal entity exercising + rights under, and complying with all of the terms of, this License. For + legal entities, "You" includes any entity which controls, is controlled + by, or is under common control with You. For purposes of this + definition, "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + +2. License Grants. + + 2.1. The Initial Developer Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to + third party intellectual property claims, the Initial Developer hereby + grants You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Initial Developer, to use, reproduce, modify, display, + perform, sublicense and distribute the Original Software (or portions + thereof), with or without Modifications, and/or as part of a Larger + Work; and + + (b) under Patent Claims infringed by the making, using or selling of + Original Software, to make, have made, use, practice, sell, and offer + for sale, and/or otherwise dispose of the Original Software (or portions + thereof). + + (c) The licenses granted in Sections 2.1(a) and (b) are effective on the + date Initial Developer first distributes or otherwise makes the Original + Software available to a third party under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: + (1) for code that You delete from the Original Software, or (2) for + infringements caused by: (i) the modification of the Original Software, + or (ii) the combination of the Original Software with other software or + devices. + + 2.2. Contributor Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to + third party intellectual property claims, each Contributor hereby grants + You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Contributor to use, reproduce, modify, display, perform, + sublicense and distribute the Modifications created by such Contributor + (or portions thereof), either on an unmodified basis, with other + Modifications, as Covered Software and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in + combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: (1) Modifications made by that Contributor (or + portions thereof); and (2) the combination of Modifications made by that + Contributor with its Contributor Version (or portions of such + combination). + + (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on + the date Contributor first distributes or otherwise makes the + Modifications available to a third party. + + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: + (1) for any code that Contributor has deleted from the Contributor + Version; (2) for infringements caused by: (i) third party modifications + of Contributor Version, or (ii) the combination of Modifications made by + that Contributor with other software (except as part of the Contributor + Version) or other devices; or (3) under Patent Claims infringed by + Covered Software in the absence of Modifications made by that + Contributor. + +3. Distribution Obligations. + + 3.1. Availability of Source Code. + + Any Covered Software that You distribute or otherwise make available in + Executable form must also be made available in Source Code form and that + Source Code form must be distributed only under the terms of this + License. You must include a copy of this License with every copy of the + Source Code form of the Covered Software You distribute or otherwise + make available. You must inform recipients of any such Covered Software + in Executable form as to how they can obtain such Covered Software in + Source Code form in a reasonable manner on or through a medium + customarily used for software exchange. + + 3.2. Modifications. + + The Modifications that You create or to which You contribute are + governed by the terms of this License. You represent that You believe + Your Modifications are Your original creation(s) and/or You have + sufficient rights to grant the rights conveyed by this License. + + 3.3. Required Notices. + + You must include a notice in each of Your Modifications that identifies + You as the Contributor of the Modification. You may not remove or alter + any copyright, patent or trademark notices contained within the Covered + Software, or any notices of licensing or any descriptive text giving + attribution to any Contributor or the Initial Developer. + + 3.4. Application of Additional Terms. + + You may not offer or impose any terms on any Covered Software in Source + Code form that alters or restricts the applicable version of this + License or the recipients' rights hereunder. You may choose to offer, + and to charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Software. However, you + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity or liability obligation is offered by + You alone, and You hereby agree to indemnify the Initial Developer and + every Contributor for any liability incurred by the Initial Developer or + such Contributor as a result of warranty, support, indemnity or + liability terms You offer. + + 3.5. Distribution of Executable Versions. + + You may distribute the Executable form of the Covered Software under the + terms of this License or under the terms of a license of Your choice, + which may contain terms different from this License, provided that You + are in compliance with the terms of this License and that the license + for the Executable form does not attempt to limit or alter the + recipient's rights in the Source Code form from the rights set forth in + this License. If You distribute the Covered Software in Executable form + under a different license, You must make it absolutely clear that any + terms which differ from this License are offered by You alone, not by + the Initial Developer or Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such terms + You offer. + + 3.6. Larger Works. + + You may create a Larger Work by combining Covered Software with other + code not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Software. + +4. Versions of the License. + + 4.1. New Versions. + + Oracle is the initial license steward and may publish revised and/or new + versions of this License from time to time. Each version will be given a + distinguishing version number. Except as provided in Section 4.3, no one + other than the license steward has the right to modify this License. + + 4.2. Effect of New Versions. + + You may always continue to use, distribute or otherwise make the Covered + Software available under the terms of the version of the License under + which You originally received the Covered Software. If the Initial + Developer includes a notice in the Original Software prohibiting it from + being distributed or otherwise made available under any subsequent + version of the License, You must distribute and make the Covered + Software available under the terms of the version of the License under + which You originally received the Covered Software. Otherwise, You may + also choose to use, distribute or otherwise make the Covered Software + available under the terms of any subsequent version of the License + published by the license steward. + + 4.3. Modified Versions. + + When You are an Initial Developer and You want to create a new license + for Your Original Software, You may create and use a modified version of + this License if You: (a) rename the license and remove any references to + the name of the license steward (except to note that the license differs + from this License); and (b) otherwise make it clear that the license + contains terms which differ from this License. + +5. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED + SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY + RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME + THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS + DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO + USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + +6. TERMINATION. + + 6.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. Provisions + which, by their nature, must remain in effect beyond the termination of + this License shall survive. + + 6.2. If You assert a patent infringement claim (excluding declaratory + judgment actions) against Initial Developer or a Contributor (the + Initial Developer or Contributor against whom You assert such claim is + referred to as "Participant") alleging that the Participant Software + (meaning the Contributor Version where the Participant is a Contributor + or the Original Software where the Participant is the Initial Developer) + directly or indirectly infringes any patent, then any and all rights + granted directly or indirectly to You by such Participant, the Initial + Developer (if the Initial Developer is not the Participant) and all + Contributors under Sections 2.1 and/or 2.2 of this License shall, upon + 60 days notice from Participant terminate prospectively and + automatically at the expiration of such 60 day notice period, unless if + within such 60 day period You withdraw Your claim with respect to the + Participant Software against such Participant either unilaterally or + pursuant to a written agreement with Participant. + + 6.3. If You assert a patent infringement claim against Participant + alleging that the Participant Software directly or indirectly infringes + any patent where such claim is resolved (such as by license or + settlement) prior to the initiation of patent infringement litigation, + then the reasonable value of the licenses granted by such Participant + under Sections 2.1 or 2.2 shall be taken into account in determining the + amount or value of any payment or license. + + 6.4. In the event of termination under Sections 6.1 or 6.2 above, all + end user licenses that have been validly granted by You or any + distributor hereunder prior to termination (excluding licenses granted + to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED + SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY + PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES + OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF + GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL + OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION + AND LIMITATION MAY NOT APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + + The Covered Software is a "commercial item," as that term is defined in + 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer + software" (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1)) + and "commercial computer software documentation" as such terms are used + in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and + 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government + End Users acquire Covered Software with only those rights set forth + herein. This U.S. Government Rights clause is in lieu of, and + supersedes, any other FAR, DFAR, or other clause or provision that + addresses Government rights in computer software under this License. + +9. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter + hereof. If any provision of this License is held to be unenforceable, + such provision shall be reformed only to the extent necessary to make it + enforceable. This License shall be governed by the law of the + jurisdiction specified in a notice contained within the Original + Software (except to the extent applicable law, if any, provides + otherwise), excluding such jurisdiction's conflict-of-law provisions. + Any litigation relating to this License shall be subject to the + jurisdiction of the courts located in the jurisdiction and venue + specified in a notice contained within the Original Software, with the + losing party responsible for costs, including, without limitation, court + costs and reasonable attorneys' fees and expenses. The application of + the United Nations Convention on Contracts for the International Sale of + Goods is expressly excluded. Any law or regulation which provides that + the language of a contract shall be construed against the drafter shall + not apply to this License. You agree that You alone are responsible for + compliance with the United States export administration regulations (and + the export control laws and regulation of any other countries) when You + use, distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, out + of its utilization of rights under this License and You agree to work + with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION +LICENSE (CDDL) + +The code released under the CDDL shall be governed by the laws of the +State of California (excluding conflict-of-law provisions). Any +litigation relating to this License shall be subject to the jurisdiction +of the Federal Courts of the Northern District of California and the +state courts of the State of California, with venue lying in Santa Clara +County, California. \ No newline at end of file diff --git a/licenses/text/Common Development and Distribution License Version 1.1 and GNU General Public License, version 2 with the Classpath Exception b/licenses/text/Common Development and Distribution License Version 1.1 and GNU General Public License, version 2 with the Classpath Exception new file mode 100644 index 0000000000..b7e2e7d76c --- /dev/null +++ b/licenses/text/Common Development and Distribution License Version 1.1 and GNU General Public License, version 2 with the Classpath Exception @@ -0,0 +1,712 @@ +COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 + +1. Definitions. + + 1.1. "Contributor" means each individual or entity that creates or + contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Software, prior Modifications used by a Contributor (if any), and the + Modifications made by that particular Contributor. + + 1.3. "Covered Software" means (a) the Original Software, or (b) + Modifications, or (c) the combination of files containing Original + Software with files containing Modifications, in each case including + portions thereof. + + 1.4. "Executable" means the Covered Software in any form other than + Source Code. + + 1.5. "Initial Developer" means the individual or entity that first makes + Original Software available under this License. + + 1.6. "Larger Work" means a work which combines Covered Software or + portions thereof with code not governed by the terms of this License. + + 1.7. "License" means this document. + + 1.8. "Licensable" means having the right to grant, to the maximum extent + possible, whether at the time of the initial grant or subsequently + acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means the Source Code and Executable form of any of + the following: + + A. Any file that results from an addition to, deletion from or + modification of the contents of a file containing Original Software or + previous Modifications; + + B. Any new file that contains any part of the Original Software or + previous Modification; or + + C. Any new file that is contributed or otherwise made available under + the terms of this License. + + 1.10. "Original Software" means the Source Code and Executable form of + computer software code that is originally released under this License. + + 1.11. "Patent Claims" means any patent claim(s), now owned or hereafter + acquired, including without limitation, method, process, and apparatus + claims, in any patent Licensable by grantor. + + 1.12. "Source Code" means (a) the common form of computer software code + in which modifications are made and (b) associated documentation + included in or with such code. + + 1.13. "You" (or "Your") means an individual or a legal entity exercising + rights under, and complying with all of the terms of, this License. For + legal entities, "You" includes any entity which controls, is controlled + by, or is under common control with You. For purposes of this + definition, "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + +2. License Grants. + + 2.1. The Initial Developer Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to + third party intellectual property claims, the Initial Developer hereby + grants You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Initial Developer, to use, reproduce, modify, display, + perform, sublicense and distribute the Original Software (or portions + thereof), with or without Modifications, and/or as part of a Larger + Work; and + + (b) under Patent Claims infringed by the making, using or selling of + Original Software, to make, have made, use, practice, sell, and offer + for sale, and/or otherwise dispose of the Original Software (or portions + thereof). + + (c) The licenses granted in Sections 2.1(a) and (b) are effective on the + date Initial Developer first distributes or otherwise makes the Original + Software available to a third party under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: + (1) for code that You delete from the Original Software, or (2) for + infringements caused by: (i) the modification of the Original Software, + or (ii) the combination of the Original Software with other software or + devices. + + 2.2. Contributor Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to + third party intellectual property claims, each Contributor hereby grants + You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) + Licensable by Contributor to use, reproduce, modify, display, perform, + sublicense and distribute the Modifications created by such Contributor + (or portions thereof), either on an unmodified basis, with other + Modifications, as Covered Software and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in + combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: (1) Modifications made by that Contributor (or + portions thereof); and (2) the combination of Modifications made by that + Contributor with its Contributor Version (or portions of such + combination). + + (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on + the date Contributor first distributes or otherwise makes the + Modifications available to a third party. + + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: + (1) for any code that Contributor has deleted from the Contributor + Version; (2) for infringements caused by: (i) third party modifications + of Contributor Version, or (ii) the combination of Modifications made by + that Contributor with other software (except as part of the Contributor + Version) or other devices; or (3) under Patent Claims infringed by + Covered Software in the absence of Modifications made by that + Contributor. + +3. Distribution Obligations. + + 3.1. Availability of Source Code. + + Any Covered Software that You distribute or otherwise make available in + Executable form must also be made available in Source Code form and that + Source Code form must be distributed only under the terms of this + License. You must include a copy of this License with every copy of the + Source Code form of the Covered Software You distribute or otherwise + make available. You must inform recipients of any such Covered Software + in Executable form as to how they can obtain such Covered Software in + Source Code form in a reasonable manner on or through a medium + customarily used for software exchange. + + 3.2. Modifications. + + The Modifications that You create or to which You contribute are + governed by the terms of this License. You represent that You believe + Your Modifications are Your original creation(s) and/or You have + sufficient rights to grant the rights conveyed by this License. + + 3.3. Required Notices. + + You must include a notice in each of Your Modifications that identifies + You as the Contributor of the Modification. You may not remove or alter + any copyright, patent or trademark notices contained within the Covered + Software, or any notices of licensing or any descriptive text giving + attribution to any Contributor or the Initial Developer. + + 3.4. Application of Additional Terms. + + You may not offer or impose any terms on any Covered Software in Source + Code form that alters or restricts the applicable version of this + License or the recipients' rights hereunder. You may choose to offer, + and to charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Software. However, you + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity or liability obligation is offered by + You alone, and You hereby agree to indemnify the Initial Developer and + every Contributor for any liability incurred by the Initial Developer or + such Contributor as a result of warranty, support, indemnity or + liability terms You offer. + + 3.5. Distribution of Executable Versions. + + You may distribute the Executable form of the Covered Software under the + terms of this License or under the terms of a license of Your choice, + which may contain terms different from this License, provided that You + are in compliance with the terms of this License and that the license + for the Executable form does not attempt to limit or alter the + recipient's rights in the Source Code form from the rights set forth in + this License. If You distribute the Covered Software in Executable form + under a different license, You must make it absolutely clear that any + terms which differ from this License are offered by You alone, not by + the Initial Developer or Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such terms + You offer. + + 3.6. Larger Works. + + You may create a Larger Work by combining Covered Software with other + code not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Software. + +4. Versions of the License. + + 4.1. New Versions. + + Oracle is the initial license steward and may publish revised and/or new + versions of this License from time to time. Each version will be given a + distinguishing version number. Except as provided in Section 4.3, no one + other than the license steward has the right to modify this License. + + 4.2. Effect of New Versions. + + You may always continue to use, distribute or otherwise make the Covered + Software available under the terms of the version of the License under + which You originally received the Covered Software. If the Initial + Developer includes a notice in the Original Software prohibiting it from + being distributed or otherwise made available under any subsequent + version of the License, You must distribute and make the Covered + Software available under the terms of the version of the License under + which You originally received the Covered Software. Otherwise, You may + also choose to use, distribute or otherwise make the Covered Software + available under the terms of any subsequent version of the License + published by the license steward. + + 4.3. Modified Versions. + + When You are an Initial Developer and You want to create a new license + for Your Original Software, You may create and use a modified version of + this License if You: (a) rename the license and remove any references to + the name of the license steward (except to note that the license differs + from this License); and (b) otherwise make it clear that the license + contains terms which differ from this License. + +5. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED + SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY + RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME + THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS + DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO + USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + +6. TERMINATION. + + 6.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. Provisions + which, by their nature, must remain in effect beyond the termination of + this License shall survive. + + 6.2. If You assert a patent infringement claim (excluding declaratory + judgment actions) against Initial Developer or a Contributor (the + Initial Developer or Contributor against whom You assert such claim is + referred to as "Participant") alleging that the Participant Software + (meaning the Contributor Version where the Participant is a Contributor + or the Original Software where the Participant is the Initial Developer) + directly or indirectly infringes any patent, then any and all rights + granted directly or indirectly to You by such Participant, the Initial + Developer (if the Initial Developer is not the Participant) and all + Contributors under Sections 2.1 and/or 2.2 of this License shall, upon + 60 days notice from Participant terminate prospectively and + automatically at the expiration of such 60 day notice period, unless if + within such 60 day period You withdraw Your claim with respect to the + Participant Software against such Participant either unilaterally or + pursuant to a written agreement with Participant. + + 6.3. If You assert a patent infringement claim against Participant + alleging that the Participant Software directly or indirectly infringes + any patent where such claim is resolved (such as by license or + settlement) prior to the initiation of patent infringement litigation, + then the reasonable value of the licenses granted by such Participant + under Sections 2.1 or 2.2 shall be taken into account in determining the + amount or value of any payment or license. + + 6.4. In the event of termination under Sections 6.1 or 6.2 above, all + end user licenses that have been validly granted by You or any + distributor hereunder prior to termination (excluding licenses granted + to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED + SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY + PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES + OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF + GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL + OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION + AND LIMITATION MAY NOT APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + + The Covered Software is a "commercial item," as that term is defined in + 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer + software" (as that term is defined at 48 C.F.R. § 252.227-7014(a)(1)) + and "commercial computer software documentation" as such terms are used + in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and + 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government + End Users acquire Covered Software with only those rights set forth + herein. This U.S. Government Rights clause is in lieu of, and + supersedes, any other FAR, DFAR, or other clause or provision that + addresses Government rights in computer software under this License. + +9. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter + hereof. If any provision of this License is held to be unenforceable, + such provision shall be reformed only to the extent necessary to make it + enforceable. This License shall be governed by the law of the + jurisdiction specified in a notice contained within the Original + Software (except to the extent applicable law, if any, provides + otherwise), excluding such jurisdiction's conflict-of-law provisions. + Any litigation relating to this License shall be subject to the + jurisdiction of the courts located in the jurisdiction and venue + specified in a notice contained within the Original Software, with the + losing party responsible for costs, including, without limitation, court + costs and reasonable attorneys' fees and expenses. The application of + the United Nations Convention on Contracts for the International Sale of + Goods is expressly excluded. Any law or regulation which provides that + the language of a contract shall be construed against the drafter shall + not apply to this License. You agree that You alone are responsible for + compliance with the United States export administration regulations (and + the export control laws and regulation of any other countries) when You + use, distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, out + of its utilization of rights under this License and You agree to work + with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION +LICENSE (CDDL) + +The code released under the CDDL shall be governed by the laws of the +State of California (excluding conflict-of-law provisions). Any +litigation relating to this License shall be subject to the jurisdiction +of the Federal Courts of the Northern District of California and the +state courts of the State of California, with venue lying in Santa Clara +County, California. + + + + +The GNU General Public License (GPL) Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, +Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to +share and change it. By contrast, the GNU General Public License is +intended to guarantee your freedom to share and change free software--to +make sure the software is free for all its users. This General Public +License applies to most of the Free Software Foundation's software and +to any other program whose authors commit to using it. (Some other Free +Software Foundation software is covered by the GNU Library General +Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. +Our General Public Licenses are designed to make sure that you have the +freedom to distribute copies of free software (and charge for this +service if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone +to deny you these rights or to ask you to surrender the rights. These +restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis +or for a fee, you must give the recipients all the rights that you have. +You must make sure that they, too, receive or can get the source code. +And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + +Finally, any free program is threatened constantly by software patents. +We wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program +proprietary. To prevent this, we have made it clear that any patent must +be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and +modification follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a +notice placed by the copyright holder saying it may be distributed under +the terms of this General Public License. The "Program", below, refers +to any such program or work, and a "work based on the Program" means +either the Program or any derivative work under copyright law: that is +to say, a work containing the Program or a portion of it, either +verbatim or with modifications and/or translated into another language. +(Hereinafter, translation is included without limitation in the term +"modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of running +the Program is not restricted, and the output from the Program is +covered only if its contents constitute a work based on the Program +(independent of having been made by running the Program). Whether that +is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source +code as you receive it, in any medium, provided that you conspicuously +and appropriately publish on each copy an appropriate copyright notice +and disclaimer of warranty; keep intact all the notices that refer to +this License and to the absence of any warranty; and give any other +recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of +it, thus forming a work based on the Program, and copy and distribute +such modifications or work under the terms of Section 1 above, provided +that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole + or in part contains or is derived from the Program or any part thereof, + to be licensed as a whole at no charge to all third parties under the + terms of this License. + + c) If the modified program normally reads commands interactively when + run, you must cause it, when started running for such interactive use in + the most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may + redistribute the program under these conditions, and telling the user + how to view a copy of this License. (Exception: if the Program itself is + interactive but does not normally print such an announcement, your work + based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, and +can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based on +the Program, the distribution of the whole must be on the terms of this +License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of a +storage or distribution medium does not bring the other work under the +scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections +1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 + above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source code +means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to control +compilation and installation of the executable. However, as a special +exception, the source code distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies the +executable. + +If distribution of executable or object code is made by offering access +to copy from a designated place, then offering equivalent access to copy +the source code from the same place counts as distribution of the source +code, even though third parties are not compelled to copy the source +along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt otherwise +to copy, modify, sublicense or distribute the Program is void, and will +automatically terminate your rights under this License. However, parties +who have received copies, or rights, from you under this License will +not have their licenses terminated so long as such parties remain in +full compliance. + +5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and all +its terms and conditions for copying, distributing or modifying the +Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further restrictions +on the recipients' exercise of the rights granted herein. You are not +responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot distribute +so as to satisfy simultaneously your obligations under this License and +any other pertinent obligations, then as a consequence you may not +distribute the Program at all. For example, if a patent license would +not permit royalty-free redistribution of the Program by all those who +receive copies directly or indirectly through you, then the only way you +could satisfy both it and this License would be to refrain entirely from +distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is implemented +by public license practices. Many people have made generous +contributions to the wide range of software distributed through that +system in reliance on consistent application of that system; it is up to +the author/donor to decide if he or she is willing to distribute +software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be +a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License may +add an explicit geographical distribution limitation excluding those +countries, so that distribution is permitted only in or among countries +not thus excluded. In such case, this License incorporates the +limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Program does not specify a version +number of this License, you may choose any version ever published by the +Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the +author to ask for permission. For software which is copyrighted by the +Free Software Foundation, write to the Free Software Foundation; we +sometimes make exceptions for this. Our decision will be guided by the +two goals of preserving the free status of all derivatives of our free +software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER +EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE +ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH +YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL +NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR +DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL +DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM +(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED +INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF +THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR +OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these +terms. + +To do so, attach the following notices to the program. It is safest to +attach them to the start of each source file to most effectively convey +the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General + Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision + comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is + free software, and you are welcome to redistribute it under certain + conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the +appropriate parts of the General Public License. Of course, the commands +you use may be called something other than `show w' and `show c'; they +could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications +with the library. If this is what you want to do, use the GNU Library +General Public License instead of this License. + +# + +"CLASSPATH" EXCEPTION TO THE GPL VERSION 2 + +Certain source files distributed by Oracle are subject to the following +clarification and special exception to the GPL Version 2, but only where +Oracle has expressly included in the particular source file's header the +words "Oracle designates this particular file as subject to the +"Classpath" exception as provided by Oracle in the License file that +accompanied this code." + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License Version 2 cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under terms +of your choice, provided that you also meet, for each linked independent +module, the terms and conditions of the license of that module. An +independent module is a module which is not derived from or based on +this library. If you modify this library, you may extend this exception +to your version of the library, but you are not obligated to do so. If +you do not wish to do so, delete this exception statement from your +version. \ No newline at end of file diff --git a/licenses/text/Eclipse Distribution License - v 1.0 b/licenses/text/Eclipse Distribution License - v 1.0 new file mode 100644 index 0000000000..49df33bc62 --- /dev/null +++ b/licenses/text/Eclipse Distribution License - v 1.0 @@ -0,0 +1,28 @@ +Eclipse Distribution License - v 1.0 +Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. +Neither the name of the Eclipse Foundation, Inc. nor the names of its +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/licenses/text/Eclipse Public License - v 1.0 b/licenses/text/Eclipse Public License - v 1.0 new file mode 100644 index 0000000000..f6735a1652 --- /dev/null +++ b/licenses/text/Eclipse Public License - v 1.0 @@ -0,0 +1,204 @@ +Eclipse Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC +LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM +CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + a) in the case of the initial Contributor, the initial code and + documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + +where such changes and/or additions to the Program originate from and are +distributed by that particular Contributor. A Contribution 'originates' from a +Contributor if it was added to the Program by such Contributor itself or +anyone acting on such Contributor's behalf. Contributions do not include +additions to the Program which: (i) are separate modules of software +distributed in conjunction with the Program under their own license agreement, +and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which are +necessarily infringed by the use or sale of its Contribution alone or when +combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby grants + Recipient a non-exclusive, worldwide, royalty-free copyright license to + reproduce, prepare derivative works of, publicly display, publicly + perform, distribute and sublicense the Contribution of such Contributor, + if any, and such derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor hereby grants + Recipient a non-exclusive, worldwide, royalty-free patent license under + Licensed Patents to make, use, sell, offer to sell, import and otherwise + transfer the Contribution of such Contributor, if any, in source code and + object code form. This patent license shall apply to the combination of + the Contribution and the Program if, at the time the Contribution is + added by the Contributor, such addition of the Contribution causes such + combination to be covered by the Licensed Patents. The patent license + shall not apply to any other combinations which include the Contribution. + No hardware per se is licensed hereunder. + + c) Recipient understands that although each Contributor grants the + licenses to its Contributions set forth herein, no assurances are + provided by any Contributor that the Program does not infringe the patent + or other intellectual property rights of any other entity. Each + Contributor disclaims any liability to Recipient for claims brought by + any other entity based on infringement of intellectual property rights or + otherwise. As a condition to exercising the rights and licenses granted + hereunder, each Recipient hereby assumes sole responsibility to secure + any other intellectual property rights needed, if any. For example, if a + third party patent license is required to allow Recipient to distribute + the Program, it is Recipient's responsibility to acquire that license + before distributing the Program. + + d) Each Contributor represents that to its knowledge it has sufficient + copyright rights in its Contribution, if any, to grant the copyright + license set forth in this Agreement. + +3. REQUIREMENTS +A Contributor may choose to distribute the Program in object code form under +its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + i) effectively disclaims on behalf of all Contributors all + warranties and conditions, express and implied, including warranties + or conditions of title and non-infringement, and implied warranties + or conditions of merchantability and fitness for a particular + purpose; + ii) effectively excludes on behalf of all Contributors all liability + for damages, including direct, indirect, special, incidental and + consequential damages, such as lost profits; + iii) states that any provisions which differ from this Agreement are + offered by that Contributor alone and not by any other party; and + iv) states that source code for the Program is available from such + Contributor, and informs licensees how to obtain it in a reasonable + manner on or through a medium customarily used for software + exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of the + Program. +Contributors may not remove or alter any copyright notices contained within +the Program. + +Each Contributor must identify itself as the originator of its Contribution, +if any, in a manner that reasonably allows subsequent Recipients to identify +the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION +Commercial distributors of software may accept certain responsibilities with +respect to end users, business partners and the like. While this license is +intended to facilitate the commercial use of the Program, the Contributor who +includes the Program in a commercial product offering should do so in a manner +which does not create potential liability for other Contributors. Therefore, +if a Contributor includes the Program in a commercial product offering, such +Contributor ("Commercial Contributor") hereby agrees to defend and indemnify +every other Contributor ("Indemnified Contributor") against any losses, +damages and costs (collectively "Losses") arising from claims, lawsuits and +other legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such Commercial +Contributor in connection with its distribution of the Program in a commercial +product offering. The obligations in this section do not apply to any claims +or Losses relating to any actual or alleged intellectual property +infringement. In order to qualify, an Indemnified Contributor must: a) +promptly notify the Commercial Contributor in writing of such claim, and b) +allow the Commercial Contributor to control, and cooperate with the Commercial +Contributor in, the defense and any related settlement negotiations. The +Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product +offering, Product X. That Contributor is then a Commercial Contributor. If +that Commercial Contributor then makes performance claims, or offers +warranties related to Product X, those performance claims and warranties are +such Commercial Contributor's responsibility alone. Under this section, the +Commercial Contributor would have to defend claims against the other +Contributors related to those performance claims and warranties, and if a +court requires any other Contributor to pay any damages as a result, the +Commercial Contributor must pay those damages. + +5. NO WARRANTY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR +IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each +Recipient is solely responsible for determining the appropriateness of using +and distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement , including but not limited to the +risks and costs of program errors, compliance with applicable laws, damage to +or loss of data, programs or equipment, and unavailability or interruption of +operations. + +6. DISCLAIMER OF LIABILITY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY +CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION +LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE +EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of the +remainder of the terms of this Agreement, and without further action by the +parties hereto, such provision shall be reformed to the minimum extent +necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Program itself +(excluding combinations of the Program with other software or hardware) +infringes such Recipient's patent(s), then such Recipient's rights granted +under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to +comply with any of the material terms or conditions of this Agreement and does +not cure such failure in a reasonable period of time after becoming aware of +such noncompliance. If all Recipient's rights under this Agreement terminate, +Recipient agrees to cease use and distribution of the Program as soon as +reasonably practicable. However, Recipient's obligations under this Agreement +and any licenses granted by Recipient relating to the Program shall continue +and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in +order to avoid inconsistency the Agreement is copyrighted and may only be +modified in the following manner. The Agreement Steward reserves the right to +publish new versions (including revisions) of this Agreement from time to +time. No one other than the Agreement Steward has the right to modify this +Agreement. The Eclipse Foundation is the initial Agreement Steward. The +Eclipse Foundation may assign the responsibility to serve as the Agreement +Steward to a suitable separate entity. Each new version of the Agreement will +be given a distinguishing version number. The Program (including +Contributions) may always be distributed subject to the version of the +Agreement under which it was received. In addition, after a new version of the +Agreement is published, Contributor may elect to distribute the Program +(including its Contributions) under the new version. Except as expressly +stated in Sections 2(a) and 2(b) above, Recipient receives no rights or +licenses to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in the +Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to this +Agreement will bring a legal action under this Agreement more than one year +after the cause of action arose. Each party waives its rights to a jury trial +in any resulting litigation. \ No newline at end of file diff --git a/licenses/text/Eclipse Public License - v 2.0 b/licenses/text/Eclipse Public License - v 2.0 new file mode 100644 index 0000000000..e23ece2c85 --- /dev/null +++ b/licenses/text/Eclipse Public License - v 2.0 @@ -0,0 +1,277 @@ +Eclipse Public License - v 2.0 + + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE + PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION + OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + + a) in the case of the initial Contributor, the initial content + Distributed under this Agreement, and + + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + where such changes and/or additions to the Program originate from + and are Distributed by that particular Contributor. A Contribution + "originates" from a Contributor if it was added to the Program by + such Contributor itself or anyone acting on such Contributor's behalf. + Contributions do not include changes or additions to the Program that + are not Modified Works. + +"Contributor" means any person or entity that Distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which +are necessarily infringed by the use or sale of its Contribution alone +or when combined with the Program. + +"Program" means the Contributions Distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement +or any Secondary License (as applicable), including Contributors. + +"Derivative Works" shall mean any work, whether in Source Code or other +form, that is based on (or derived from) the Program and for which the +editorial revisions, annotations, elaborations, or other modifications +represent, as a whole, an original work of authorship. + +"Modified Works" shall mean any work in Source Code or other form that +results from an addition to, deletion from, or modification of the +contents of the Program, including, for purposes of clarity any new file +in Source Code form that contains any contents of the Program. Modified +Works shall not include works that contain only declarations, +interfaces, types, classes, structures, or files of the Program solely +in each case in order to link to, bind by name, or subclass the Program +or Modified Works thereof. + +"Distribute" means the acts of a) distributing or b) making available +in any manner that enables the transfer of a copy. + +"Source Code" means the form of a Program preferred for making +modifications, including but not limited to software source code, +documentation source, and configuration files. + +"Secondary License" means either the GNU General Public License, +Version 2.0, or any later versions of that license, including any +exceptions or additional permissions as identified by the initial +Contributor. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free copyright + license to reproduce, prepare Derivative Works of, publicly display, + publicly perform, Distribute and sublicense the Contribution of such + Contributor, if any, and such Derivative Works. + + b) Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free patent + license under Licensed Patents to make, use, sell, offer to sell, + import and otherwise transfer the Contribution of such Contributor, + if any, in Source Code or other form. This patent license shall + apply to the combination of the Contribution and the Program if, at + the time the Contribution is added by the Contributor, such addition + of the Contribution causes such combination to be covered by the + Licensed Patents. The patent license shall not apply to any other + combinations which include the Contribution. No hardware per se is + licensed hereunder. + + c) Recipient understands that although each Contributor grants the + licenses to its Contributions set forth herein, no assurances are + provided by any Contributor that the Program does not infringe the + patent or other intellectual property rights of any other entity. + Each Contributor disclaims any liability to Recipient for claims + brought by any other entity based on infringement of intellectual + property rights or otherwise. As a condition to exercising the + rights and licenses granted hereunder, each Recipient hereby + assumes sole responsibility to secure any other intellectual + property rights needed, if any. For example, if a third party + patent license is required to allow Recipient to Distribute the + Program, it is Recipient's responsibility to acquire that license + before distributing the Program. + + d) Each Contributor represents that to its knowledge it has + sufficient copyright rights in its Contribution, if any, to grant + the copyright license set forth in this Agreement. + + e) Notwithstanding the terms of any Secondary License, no + Contributor makes additional grants to any Recipient (other than + those set forth in this Agreement) as a result of such Recipient's + receipt of the Program under the terms of a Secondary License + (if permitted under the terms of Section 3). + +3. REQUIREMENTS + +3.1 If a Contributor Distributes the Program in any form, then: + + a) the Program must also be made available as Source Code, in + accordance with section 3.2, and the Contributor must accompany + the Program with a statement that the Source Code for the Program + is available under this Agreement, and informs Recipients how to + obtain it in a reasonable manner on or through a medium customarily + used for software exchange; and + + b) the Contributor may Distribute the Program under a license + different than this Agreement, provided that such license: + i) effectively disclaims on behalf of all other Contributors all + warranties and conditions, express and implied, including + warranties or conditions of title and non-infringement, and + implied warranties or conditions of merchantability and fitness + for a particular purpose; + + ii) effectively excludes on behalf of all other Contributors all + liability for damages, including direct, indirect, special, + incidental and consequential damages, such as lost profits; + + iii) does not attempt to limit or alter the recipients' rights + in the Source Code under section 3.2; and + + iv) requires any subsequent distribution of the Program by any + party to be under a license that satisfies the requirements + of this section 3. + +3.2 When the Program is Distributed as Source Code: + + a) it must be made available under this Agreement, or if the + Program (i) is combined with other material in a separate file or + files made available under a Secondary License, and (ii) the initial + Contributor attached to the Source Code the notice described in + Exhibit A of this Agreement, then the Program may be made available + under the terms of such Secondary Licenses, and + + b) a copy of this Agreement must be included with each copy of + the Program. + +3.3 Contributors may not remove or alter any copyright, patent, +trademark, attribution notices, disclaimers of warranty, or limitations +of liability ("notices") contained within the Program from any copy of +the Program which they Distribute, provided that Contributors may add +their own appropriate notices. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities +with respect to end users, business partners and the like. While this +license is intended to facilitate the commercial use of the Program, +the Contributor who includes the Program in a commercial product +offering should do so in a manner which does not create potential +liability for other Contributors. Therefore, if a Contributor includes +the Program in a commercial product offering, such Contributor +("Commercial Contributor") hereby agrees to defend and indemnify every +other Contributor ("Indemnified Contributor") against any losses, +damages and costs (collectively "Losses") arising from claims, lawsuits +and other legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such +Commercial Contributor in connection with its distribution of the Program +in a commercial product offering. The obligations in this section do not +apply to any claims or Losses relating to any actual or alleged +intellectual property infringement. In order to qualify, an Indemnified +Contributor must: a) promptly notify the Commercial Contributor in +writing of such claim, and b) allow the Commercial Contributor to control, +and cooperate with the Commercial Contributor in, the defense and any +related settlement negotiations. The Indemnified Contributor may +participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those performance +claims and warranties, and if a court requires any other Contributor to +pay any damages as a result, the Commercial Contributor must pay +those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT +PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN "AS IS" +BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR +IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF +TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR +PURPOSE. Each Recipient is solely responsible for determining the +appropriateness of using and distributing the Program and assumes all +risks associated with its exercise of rights under this Agreement, +including but not limited to the risks and costs of program errors, +compliance with applicable laws, damage to or loss of data, programs +or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT +PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS +SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST +PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE +EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further +action by the parties hereto, such provision shall be reformed to the +minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity +(including a cross-claim or counterclaim in a lawsuit) alleging that the +Program itself (excluding combinations of the Program with other software +or hardware) infringes such Recipient's patent(s), then such Recipient's +rights granted under Section 2(b) shall terminate as of the date such +litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it +fails to comply with any of the material terms or conditions of this +Agreement and does not cure such failure in a reasonable period of +time after becoming aware of such noncompliance. If all Recipient's +rights under this Agreement terminate, Recipient agrees to cease use +and distribution of the Program as soon as reasonably practicable. +However, Recipient's obligations under this Agreement and any licenses +granted by Recipient relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, +but in order to avoid inconsistency the Agreement is copyrighted and +may only be modified in the following manner. The Agreement Steward +reserves the right to publish new versions (including revisions) of +this Agreement from time to time. No one other than the Agreement +Steward has the right to modify this Agreement. The Eclipse Foundation +is the initial Agreement Steward. The Eclipse Foundation may assign the +responsibility to serve as the Agreement Steward to a suitable separate +entity. Each new version of the Agreement will be given a distinguishing +version number. The Program (including Contributions) may always be +Distributed subject to the version of the Agreement under which it was +received. In addition, after a new version of the Agreement is published, +Contributor may elect to Distribute the Program (including its +Contributions) under the new version. + +Except as expressly stated in Sections 2(a) and 2(b) above, Recipient +receives no rights or licenses to the intellectual property of any +Contributor under this Agreement, whether expressly, by implication, +estoppel or otherwise. All rights in the Program not expressly granted +under this Agreement are reserved. Nothing in this Agreement is intended +to be enforceable by any entity that is not a Contributor or Recipient. +No third-party beneficiary rights are created under this Agreement. + +Exhibit A - Form of Secondary Licenses Notice + +"This Source Code may also be made available under the following +Secondary Licenses when the conditions for such availability set forth +in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), +version(s), and exceptions or additional permissions here}." + + Simply including a copy of this Agreement, including this Exhibit A + is not sufficient to license the Source Code under Secondary Licenses. + + If it is not possible or desirable to put the notice in a particular + file, then You may include the notice in a location (such as a LICENSE + file in a relevant directory) where a recipient would be likely to + look for such a notice. + + You may add additional accurate notices of copyright ownership. \ No newline at end of file diff --git a/licenses/text/GNU General Public License (GPL), version 2, with the Classpath exception b/licenses/text/GNU General Public License (GPL), version 2, with the Classpath exception new file mode 100644 index 0000000000..1388dd8281 --- /dev/null +++ b/licenses/text/GNU General Public License (GPL), version 2, with the Classpath exception @@ -0,0 +1,390 @@ +GNU General Public License, version 2, +with the Classpath Exception +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., 59 + Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. + + + + +ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. \ No newline at end of file diff --git a/licenses/text/GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 b/licenses/text/GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 new file mode 100644 index 0000000000..8434cfff5e --- /dev/null +++ b/licenses/text/GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 @@ -0,0 +1,169 @@ +GNU LESSER GENERAL PUBLIC LICENSE +Version 2.1, February 1999 + +Copyright (C) 1991, 1999 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] +Preamble +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. + +This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. + +When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. + +To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. + +For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. + +We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. + +To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. + +Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. + +Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. + +When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. + +We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. + +For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. + +In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. + +Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. + +The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION +0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". + +A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. + +The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) + +"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. + +1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) The modified work must itself be a software library. +b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. +c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. +d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. +(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. + +Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. + +This option is useful when you wish to copy part of the code of the Library into a program that is not a library. + +4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. + +If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. + +5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. + +However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. + +When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. + +If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) + +Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. + +6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. + +You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: + +a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) +b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. +c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. +d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. +e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. +For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. + +7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: + +a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. +b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. +8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. + +10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. + +11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. + +14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS +How to Apply These Terms to Your New Libraries +If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). + +To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +one line to give the library's name and an idea of what it does. +Copyright (C) year name of author + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in +the library `Frob' (a library for tweaking knobs) written +by James Random Hacker. + +signature of Ty Coon, 1 April 1990 +Ty Coon, President of Vice +That's all there is to it! \ No newline at end of file diff --git a/licenses/text/MIT b/licenses/text/MIT new file mode 100644 index 0000000000..e9c74d0582 --- /dev/null +++ b/licenses/text/MIT @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/licenses/text/MPL-2.0 b/licenses/text/MPL-2.0 new file mode 100644 index 0000000000..f4bbcd200a --- /dev/null +++ b/licenses/text/MPL-2.0 @@ -0,0 +1,373 @@ +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. \ No newline at end of file diff --git a/licenses/text/Public Domain, per Creative Commons CC0 b/licenses/text/Public Domain, per Creative Commons CC0 new file mode 100644 index 0000000000..1625c17936 --- /dev/null +++ b/licenses/text/Public Domain, per Creative Commons CC0 @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. \ No newline at end of file diff --git a/licenses/text/The Go license b/licenses/text/The Go license new file mode 100644 index 0000000000..ea5ea89869 --- /dev/null +++ b/licenses/text/The Go license @@ -0,0 +1,27 @@ +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/processor/src/main/java/apoc/processor/ApocProcessor.java b/processor/src/main/java/apoc/processor/ApocProcessor.java index 0248dc13ec..c0fdd14033 100644 --- a/processor/src/main/java/apoc/processor/ApocProcessor.java +++ b/processor/src/main/java/apoc/processor/ApocProcessor.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.processor; import org.neo4j.procedure.Procedure; diff --git a/processor/src/main/java/apoc/processor/ExtensionClassWriter.java b/processor/src/main/java/apoc/processor/ExtensionClassWriter.java index 03e9631986..0163797fca 100644 --- a/processor/src/main/java/apoc/processor/ExtensionClassWriter.java +++ b/processor/src/main/java/apoc/processor/ExtensionClassWriter.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.processor; import com.squareup.javapoet.ClassName; diff --git a/processor/src/main/java/apoc/processor/SignatureVisitor.java b/processor/src/main/java/apoc/processor/SignatureVisitor.java index 227bfd1131..59fc7f3cef 100644 --- a/processor/src/main/java/apoc/processor/SignatureVisitor.java +++ b/processor/src/main/java/apoc/processor/SignatureVisitor.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.processor; import org.neo4j.procedure.Procedure; diff --git a/processor/src/test/java/apoc/processor/ApocProcessorTest.java b/processor/src/test/java/apoc/processor/ApocProcessorTest.java index d931b97baf..159a376417 100644 --- a/processor/src/test/java/apoc/processor/ApocProcessorTest.java +++ b/processor/src/test/java/apoc/processor/ApocProcessorTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.processor; import com.google.testing.compile.CompilationRule; diff --git a/processor/src/test/java/apoc/processor/ProcedureSignatureVisitorTest.java b/processor/src/test/java/apoc/processor/ProcedureSignatureVisitorTest.java index 8e71324726..6cacbfc33d 100644 --- a/processor/src/test/java/apoc/processor/ProcedureSignatureVisitorTest.java +++ b/processor/src/test/java/apoc/processor/ProcedureSignatureVisitorTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.processor; import com.google.testing.compile.CompilationRule; diff --git a/processor/src/test/java/apoc/processor/UserAggregationFunctionSignatureVisitorTest.java b/processor/src/test/java/apoc/processor/UserAggregationFunctionSignatureVisitorTest.java index 5b6fdd005d..32ca4c310c 100644 --- a/processor/src/test/java/apoc/processor/UserAggregationFunctionSignatureVisitorTest.java +++ b/processor/src/test/java/apoc/processor/UserAggregationFunctionSignatureVisitorTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.processor; import com.google.testing.compile.CompilationRule; diff --git a/processor/src/test/java/apoc/processor/UserFunctionSignatureVisitorTest.java b/processor/src/test/java/apoc/processor/UserFunctionSignatureVisitorTest.java index 8d2ca8e2b7..6ebf26f30c 100644 --- a/processor/src/test/java/apoc/processor/UserFunctionSignatureVisitorTest.java +++ b/processor/src/test/java/apoc/processor/UserFunctionSignatureVisitorTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.processor; import com.google.testing.compile.CompilationRule; diff --git a/test-utils/build.gradle b/test-utils/build.gradle index 3b98822aba..7c64722a89 100644 --- a/test-utils/build.gradle +++ b/test-utils/build.gradle @@ -31,6 +31,8 @@ dependencies { api group: 'org.neo4j', name: 'log-test-utils', version: neo4jVersionEffective // , classifier: "tests" api group: 'org.neo4j.driver', name: 'neo4j-java-driver', version: '4.0.0' api group: 'org.apache.hadoop', name: 'hadoop-hdfs', version: '3.3.5', withoutServers.andThen(withoutLoggers) + // If updated check if the transitive dependency to javax.servlet.jsp:jsp-api:2.1 has also updated + // and remove the manual licensing check for it in licenses-3rdparties.gradle api group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.3.5', withoutServers.andThen(withoutLoggers) api group: 'org.apache.hadoop', name: 'hadoop-minicluster', version: '3.3.5', withoutServers.andThen(withoutLoggers) api group: 'org.testcontainers', name: 'testcontainers', version: testContainersVersion @@ -48,7 +50,7 @@ dependencies { implementation group: 'org.neo4j', name: 'neo4j-common', version: neo4jVersionEffective, classifier: "tests" implementation group: 'org.neo4j', name: 'neo4j-kernel', version: neo4jVersionEffective, classifier: "tests" implementation group: 'org.neo4j', name: 'neo4j-io', version: neo4jVersionEffective, classifier: "tests" - implementation group: 'org.gradle', name: 'gradle-tooling-api', version: '7.2' + implementation group: 'org.gradle', name: 'gradle-tooling-api', version: '7.3' implementation group: 'org.jetbrains', name: 'annotations', version: "17.0.0" implementation group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.12.425' implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-csv', version: '2.13.2' diff --git a/test-utils/src/main/java/apoc/algo/AlgoUtil.java b/test-utils/src/main/java/apoc/algo/AlgoUtil.java index 800516b6f7..4df40d1bec 100644 --- a/test-utils/src/main/java/apoc/algo/AlgoUtil.java +++ b/test-utils/src/main/java/apoc/algo/AlgoUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.algo; import apoc.util.collection.Iterables; diff --git a/test-utils/src/main/java/apoc/csv/CsvTestUtil.java b/test-utils/src/main/java/apoc/csv/CsvTestUtil.java index 58bf453350..3c910b7cc0 100644 --- a/test-utils/src/main/java/apoc/csv/CsvTestUtil.java +++ b/test-utils/src/main/java/apoc/csv/CsvTestUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.csv; import com.fasterxml.jackson.databind.MappingIterator; diff --git a/test-utils/src/main/java/apoc/periodic/PeriodicTestUtils.java b/test-utils/src/main/java/apoc/periodic/PeriodicTestUtils.java index fa38bef1f4..1262a6c7f2 100644 --- a/test-utils/src/main/java/apoc/periodic/PeriodicTestUtils.java +++ b/test-utils/src/main/java/apoc/periodic/PeriodicTestUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.periodic; import apoc.util.TransactionTestUtil; diff --git a/test-utils/src/main/java/apoc/trigger/TriggerTestUtil.java b/test-utils/src/main/java/apoc/trigger/TriggerTestUtil.java index 918752123b..4f2ff7ef6a 100644 --- a/test-utils/src/main/java/apoc/trigger/TriggerTestUtil.java +++ b/test-utils/src/main/java/apoc/trigger/TriggerTestUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.trigger; import org.neo4j.graphdb.GraphDatabaseService; diff --git a/test-utils/src/main/java/apoc/util/FileTestUtil.java b/test-utils/src/main/java/apoc/util/FileTestUtil.java index 7b24c3ee89..2e9cec4126 100644 --- a/test-utils/src/main/java/apoc/util/FileTestUtil.java +++ b/test-utils/src/main/java/apoc/util/FileTestUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import java.io.File; diff --git a/test-utils/src/main/java/apoc/util/Neo4jContainerExtension.java b/test-utils/src/main/java/apoc/util/Neo4jContainerExtension.java index 60139f2b96..d1adc07826 100644 --- a/test-utils/src/main/java/apoc/util/Neo4jContainerExtension.java +++ b/test-utils/src/main/java/apoc/util/Neo4jContainerExtension.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.neo4j.driver.AuthToken; diff --git a/test-utils/src/main/java/apoc/util/SensitivePathGenerator.java b/test-utils/src/main/java/apoc/util/SensitivePathGenerator.java index 46fa1f2685..fbeaa87922 100644 --- a/test-utils/src/main/java/apoc/util/SensitivePathGenerator.java +++ b/test-utils/src/main/java/apoc/util/SensitivePathGenerator.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.apache.commons.lang3.tuple.Pair; diff --git a/test-utils/src/main/java/apoc/util/StatusCodeMatcher.java b/test-utils/src/main/java/apoc/util/StatusCodeMatcher.java index 1d7155087c..3841cf2b38 100644 --- a/test-utils/src/main/java/apoc/util/StatusCodeMatcher.java +++ b/test-utils/src/main/java/apoc/util/StatusCodeMatcher.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.hamcrest.BaseMatcher; diff --git a/test-utils/src/main/java/apoc/util/TestContainerUtil.java b/test-utils/src/main/java/apoc/util/TestContainerUtil.java index df966b5570..89ad102316 100644 --- a/test-utils/src/main/java/apoc/util/TestContainerUtil.java +++ b/test-utils/src/main/java/apoc/util/TestContainerUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import com.github.dockerjava.api.exception.NotFoundException; diff --git a/test-utils/src/main/java/apoc/util/TestUtil.java b/test-utils/src/main/java/apoc/util/TestUtil.java index e6afd49f9e..4df8b3862b 100644 --- a/test-utils/src/main/java/apoc/util/TestUtil.java +++ b/test-utils/src/main/java/apoc/util/TestUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import apoc.util.collection.Iterables; diff --git a/test-utils/src/main/java/apoc/util/TestcontainersCausalCluster.java b/test-utils/src/main/java/apoc/util/TestcontainersCausalCluster.java index 7e7f161a11..1737480b4c 100644 --- a/test-utils/src/main/java/apoc/util/TestcontainersCausalCluster.java +++ b/test-utils/src/main/java/apoc/util/TestcontainersCausalCluster.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.neo4j.driver.AuthTokens; diff --git a/test-utils/src/main/java/apoc/util/TransactionTestUtil.java b/test-utils/src/main/java/apoc/util/TransactionTestUtil.java index 60d0e11e79..c4ce6419e7 100644 --- a/test-utils/src/main/java/apoc/util/TransactionTestUtil.java +++ b/test-utils/src/main/java/apoc/util/TransactionTestUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util; import org.neo4j.graphdb.GraphDatabaseService; diff --git a/test-utils/src/main/java/apoc/util/s3/S3BaseTest.java b/test-utils/src/main/java/apoc/util/s3/S3BaseTest.java index 3538b6e5de..57e4676736 100644 --- a/test-utils/src/main/java/apoc/util/s3/S3BaseTest.java +++ b/test-utils/src/main/java/apoc/util/s3/S3BaseTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import org.junit.AfterClass; diff --git a/test-utils/src/main/java/apoc/util/s3/S3Container.java b/test-utils/src/main/java/apoc/util/s3/S3Container.java index af3c066f71..941821ca0f 100644 --- a/test-utils/src/main/java/apoc/util/s3/S3Container.java +++ b/test-utils/src/main/java/apoc/util/s3/S3Container.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import apoc.util.Util; diff --git a/test-utils/src/main/java/apoc/util/s3/S3ParamsExtractorTest.java b/test-utils/src/main/java/apoc/util/s3/S3ParamsExtractorTest.java index 64c9b42253..de3838b177 100644 --- a/test-utils/src/main/java/apoc/util/s3/S3ParamsExtractorTest.java +++ b/test-utils/src/main/java/apoc/util/s3/S3ParamsExtractorTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import org.junit.Test; diff --git a/test-utils/src/main/java/apoc/util/s3/S3TestUtil.java b/test-utils/src/main/java/apoc/util/s3/S3TestUtil.java index 6f057471fe..f3ec80961e 100644 --- a/test-utils/src/main/java/apoc/util/s3/S3TestUtil.java +++ b/test-utils/src/main/java/apoc/util/s3/S3TestUtil.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.util.s3; import com.amazonaws.AmazonClientException; diff --git a/test-utils/src/main/java/apoc/xml/XmlTestUtils.java b/test-utils/src/main/java/apoc/xml/XmlTestUtils.java index 0ee24ef5cb..1f30edb061 100644 --- a/test-utils/src/main/java/apoc/xml/XmlTestUtils.java +++ b/test-utils/src/main/java/apoc/xml/XmlTestUtils.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package apoc.xml; import java.util.Arrays; diff --git a/test-utils/src/main/java/org/neo4j/test/rule/DbmsRule.java b/test-utils/src/main/java/org/neo4j/test/rule/DbmsRule.java index cdcade44a9..fbf9672a07 100644 --- a/test-utils/src/main/java/org/neo4j/test/rule/DbmsRule.java +++ b/test-utils/src/main/java/org/neo4j/test/rule/DbmsRule.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.neo4j.test.rule; import java.time.Duration; diff --git a/test-utils/src/main/java/org/neo4j/test/rule/ExternalResource.java b/test-utils/src/main/java/org/neo4j/test/rule/ExternalResource.java index 5c4fd425c2..36e121a8fd 100644 --- a/test-utils/src/main/java/org/neo4j/test/rule/ExternalResource.java +++ b/test-utils/src/main/java/org/neo4j/test/rule/ExternalResource.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.neo4j.test.rule; import org.junit.rules.TestRule; diff --git a/test-utils/src/main/java/org/neo4j/test/rule/ImpermanentDbmsRule.java b/test-utils/src/main/java/org/neo4j/test/rule/ImpermanentDbmsRule.java index 4f086826e2..3f37a53c4e 100644 --- a/test-utils/src/main/java/org/neo4j/test/rule/ImpermanentDbmsRule.java +++ b/test-utils/src/main/java/org/neo4j/test/rule/ImpermanentDbmsRule.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.neo4j.test.rule; import org.neo4j.dbms.api.Neo4jDatabaseManagementServiceBuilder;