aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/optional/sugar.js
Commit message (Expand)AuthorAgeFilesLines
* update dependenciesUlrich-Matthias Schäfer2024-06-181-9/+9
* add more events to sugar (fixes #1217)Ulrich-Matthias Schäfer2023-09-031-1/+8
* dependency updates, easier formattingUlrich-Matthias Schäfer2023-06-131-17/+38
* update dependencies, apply new linter fixesUlrich-Matthias Schäfer2021-01-131-4/+4
* added tests for sugar.jsUlrich-Matthias Schäfer2020-04-261-4/+3
* added tests for CircleUlrich-Matthias Schäfer2020-04-081-2/+2
* This is a big one...Ulrich-Matthias Schäfer2020-03-281-22/+7
* fixed move and center commands for textUlrich-Matthias Schäfer2019-01-221-5/+0
* Fix move and size of groups, removed setting of a default font so we dont act...Ulrich-Matthias Schäfer2019-01-121-0/+1
* Release 3.0.53.0.5Ulrich-Matthias Schäfer2018-12-121-13/+1
* fixed methods not returning this and missing methods on ListUlrich-Matthias Schäfer2018-12-031-1/+1
* Make color-animation work in all spaces (conversion bugs still there)Ulrich-Matthias Schäfer2018-11-261-1/+1
* Reverted some of the lint rules after chatting with fuzzySaivan2018-11-261-149/+83
* Changed the esLint rules to avoid silly ternary operators, and to let code br...Saivan2018-11-251-87/+153
* make List return new lists on method calls, add map to array polyfill so that...Ulrich-Matthias Schäfer2018-11-121-8/+9
* `fill()` and `stroke()` return the fill and stroke attribute when called as g...Ulrich-Matthias Schäfer2018-11-081-1/+1
* added `ax(), ay(), amove()` to change texts x and y values directly (#787)Ulrich-Matthias Schäfer2018-11-081-0/+12
* added insertAfter/Before, introduce attrHooks, move few methods, SVG.Text.tex...Ulrich-Matthias Schäfer2018-11-081-0/+32
* reordered modules, add es6 buildUlrich-Matthias Schäfer2018-11-061-0/+159
-plexus-bridge/pom.xml'>
path: root/archiva-modules/archiva-base/archiva-plexus-bridge/pom.xml
blob: 380e936de7568e67e76f42cfb2a3bd64126cbb01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Licensed to the Apache Software Foundation (ASF) under one
  ~ or more contributor license agreements.  See the NOTICE file
  ~ distributed with this work for additional information
  ~ regarding copyright ownership.  The ASF licenses this file
  ~ to you under the Apache License, Version 2.0 (the
  ~ "License"); you may not use this file except in compliance
  ~ with the License.  You may obtain a copy of the License at
  ~
  ~   http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing,
  ~ software distributed under the License is distributed on an
  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  ~ KIND, either express or implied.  See the License for the
  ~ specific language governing permissions and limitations
  ~ under the License.
  -->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <parent>
    <groupId>org.apache.archiva</groupId>
    <artifactId>archiva-base</artifactId>
    <version>3.0.0-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>archiva-plexus-bridge</artifactId>

  <name>Archiva Base :: Plexus Bridge</name>

  <properties>
    <site.staging.base>${project.parent.parent.basedir}</site.staging.base>
  </properties>

  <dependencies>

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.eclipse.sisu</groupId>
      <artifactId>org.eclipse.sisu.plexus</artifactId>
    </dependency>
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-classworlds</artifactId>
      <version>2.5.2</version>
    </dependency>
    <dependency>
      <groupId>com.google.inject</groupId>
      <artifactId>guice</artifactId>
      <classifier>no_aop</classifier>
    </dependency>
    <dependency>
      <groupId>jakarta.annotation</groupId>
      <artifactId>jakarta.annotation-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
    </dependency>

    <!-- Test scope -->
    <dependency>
      <groupId>org.apache.maven.indexer</groupId>
      <artifactId>indexer-core</artifactId>
      <classifier>shaded-lucene</classifier>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-artifact</artifactId>
      <scope>test</scope>
    </dependency>

  </dependencies>
</project>